e724d5186db8db59ac245c66edc08fa7cffa1777
[dragonfly.git] / sys / dev / drm / i915 / i915_drv.c
1 /* i915_drv.c -- i830,i845,i855,i865,i915 driver -*- linux-c -*-
2  */
3 /*
4  *
5  * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6  * All Rights Reserved.
7  *
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  *
28  */
29
30 #include <linux/device.h>
31 #include <drm/drmP.h>
32 #include <drm/i915_drm.h>
33 #include "i915_drv.h"
34 #include "i915_trace.h"
35 #include "intel_drv.h"
36
37 #include <linux/console.h>
38 #include <linux/module.h>
39 #include <linux/vga_switcheroo.h>
40 #include <drm/drm_crtc_helper.h>
41
42 static struct drm_driver driver;
43
44 #define GEN_DEFAULT_PIPEOFFSETS \
45         .pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
46                           PIPE_C_OFFSET, PIPE_EDP_OFFSET }, \
47         .trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
48                            TRANSCODER_C_OFFSET, TRANSCODER_EDP_OFFSET }, \
49         .palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET }
50
51 #define GEN_CHV_PIPEOFFSETS \
52         .pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
53                           CHV_PIPE_C_OFFSET }, \
54         .trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
55                            CHV_TRANSCODER_C_OFFSET, }, \
56         .palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET, \
57                              CHV_PALETTE_C_OFFSET }
58
59 #define CURSOR_OFFSETS \
60         .cursor_offsets = { CURSOR_A_OFFSET, CURSOR_B_OFFSET, CHV_CURSOR_C_OFFSET }
61
62 #define IVB_CURSOR_OFFSETS \
63         .cursor_offsets = { CURSOR_A_OFFSET, IVB_CURSOR_B_OFFSET, IVB_CURSOR_C_OFFSET }
64
65 #define BDW_COLORS \
66         .color = { .degamma_lut_size = 512, .gamma_lut_size = 512 }
67 #define CHV_COLORS \
68         .color = { .degamma_lut_size = 65, .gamma_lut_size = 257 }
69
70 static const struct intel_device_info intel_i830_info = {
71         .gen = 2, .is_mobile = 1, .cursor_needs_physical = 1, .num_pipes = 2,
72         .has_overlay = 1, .overlay_needs_physical = 1,
73         .ring_mask = RENDER_RING,
74         GEN_DEFAULT_PIPEOFFSETS,
75         CURSOR_OFFSETS,
76 };
77
78 static const struct intel_device_info intel_845g_info = {
79         .gen = 2, .num_pipes = 1,
80         .has_overlay = 1, .overlay_needs_physical = 1,
81         .ring_mask = RENDER_RING,
82         GEN_DEFAULT_PIPEOFFSETS,
83         CURSOR_OFFSETS,
84 };
85
86 static const struct intel_device_info intel_i85x_info = {
87         .gen = 2, .is_i85x = 1, .is_mobile = 1, .num_pipes = 2,
88         .cursor_needs_physical = 1,
89         .has_overlay = 1, .overlay_needs_physical = 1,
90         .has_fbc = 1,
91         .ring_mask = RENDER_RING,
92         GEN_DEFAULT_PIPEOFFSETS,
93         CURSOR_OFFSETS,
94 };
95
96 static const struct intel_device_info intel_i865g_info = {
97         .gen = 2, .num_pipes = 1,
98         .has_overlay = 1, .overlay_needs_physical = 1,
99         .ring_mask = RENDER_RING,
100         GEN_DEFAULT_PIPEOFFSETS,
101         CURSOR_OFFSETS,
102 };
103
104 static const struct intel_device_info intel_i915g_info = {
105         .gen = 3, .is_i915g = 1, .cursor_needs_physical = 1, .num_pipes = 2,
106         .has_overlay = 1, .overlay_needs_physical = 1,
107         .ring_mask = RENDER_RING,
108         GEN_DEFAULT_PIPEOFFSETS,
109         CURSOR_OFFSETS,
110 };
111 static const struct intel_device_info intel_i915gm_info = {
112         .gen = 3, .is_mobile = 1, .num_pipes = 2,
113         .cursor_needs_physical = 1,
114         .has_overlay = 1, .overlay_needs_physical = 1,
115         .supports_tv = 1,
116         .has_fbc = 1,
117         .ring_mask = RENDER_RING,
118         GEN_DEFAULT_PIPEOFFSETS,
119         CURSOR_OFFSETS,
120 };
121 static const struct intel_device_info intel_i945g_info = {
122         .gen = 3, .has_hotplug = 1, .cursor_needs_physical = 1, .num_pipes = 2,
123         .has_overlay = 1, .overlay_needs_physical = 1,
124         .ring_mask = RENDER_RING,
125         GEN_DEFAULT_PIPEOFFSETS,
126         CURSOR_OFFSETS,
127 };
128 static const struct intel_device_info intel_i945gm_info = {
129         .gen = 3, .is_i945gm = 1, .is_mobile = 1, .num_pipes = 2,
130         .has_hotplug = 1, .cursor_needs_physical = 1,
131         .has_overlay = 1, .overlay_needs_physical = 1,
132         .supports_tv = 1,
133         .has_fbc = 1,
134         .ring_mask = RENDER_RING,
135         GEN_DEFAULT_PIPEOFFSETS,
136         CURSOR_OFFSETS,
137 };
138
139 static const struct intel_device_info intel_i965g_info = {
140         .gen = 4, .is_broadwater = 1, .num_pipes = 2,
141         .has_hotplug = 1,
142         .has_overlay = 1,
143         .ring_mask = RENDER_RING,
144         GEN_DEFAULT_PIPEOFFSETS,
145         CURSOR_OFFSETS,
146 };
147
148 static const struct intel_device_info intel_i965gm_info = {
149         .gen = 4, .is_crestline = 1, .num_pipes = 2,
150         .is_mobile = 1, .has_fbc = 1, .has_hotplug = 1,
151         .has_overlay = 1,
152         .supports_tv = 1,
153         .ring_mask = RENDER_RING,
154         GEN_DEFAULT_PIPEOFFSETS,
155         CURSOR_OFFSETS,
156 };
157
158 static const struct intel_device_info intel_g33_info = {
159         .gen = 3, .is_g33 = 1, .num_pipes = 2,
160         .need_gfx_hws = 1, .has_hotplug = 1,
161         .has_overlay = 1,
162         .ring_mask = RENDER_RING,
163         GEN_DEFAULT_PIPEOFFSETS,
164         CURSOR_OFFSETS,
165 };
166
167 static const struct intel_device_info intel_g45_info = {
168         .gen = 4, .is_g4x = 1, .need_gfx_hws = 1, .num_pipes = 2,
169         .has_pipe_cxsr = 1, .has_hotplug = 1,
170         .ring_mask = RENDER_RING | BSD_RING,
171         GEN_DEFAULT_PIPEOFFSETS,
172         CURSOR_OFFSETS,
173 };
174
175 static const struct intel_device_info intel_gm45_info = {
176         .gen = 4, .is_g4x = 1, .num_pipes = 2,
177         .is_mobile = 1, .need_gfx_hws = 1, .has_fbc = 1,
178         .has_pipe_cxsr = 1, .has_hotplug = 1,
179         .supports_tv = 1,
180         .ring_mask = RENDER_RING | BSD_RING,
181         GEN_DEFAULT_PIPEOFFSETS,
182         CURSOR_OFFSETS,
183 };
184
185 static const struct intel_device_info intel_pineview_info = {
186         .gen = 3, .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .num_pipes = 2,
187         .need_gfx_hws = 1, .has_hotplug = 1,
188         .has_overlay = 1,
189         GEN_DEFAULT_PIPEOFFSETS,
190         CURSOR_OFFSETS,
191 };
192
193 static const struct intel_device_info intel_ironlake_d_info = {
194         .gen = 5, .num_pipes = 2,
195         .need_gfx_hws = 1, .has_hotplug = 1,
196         .ring_mask = RENDER_RING | BSD_RING,
197         GEN_DEFAULT_PIPEOFFSETS,
198         CURSOR_OFFSETS,
199 };
200
201 static const struct intel_device_info intel_ironlake_m_info = {
202         .gen = 5, .is_mobile = 1, .num_pipes = 2,
203         .need_gfx_hws = 1, .has_hotplug = 1,
204         .has_fbc = 1,
205         .ring_mask = RENDER_RING | BSD_RING,
206         GEN_DEFAULT_PIPEOFFSETS,
207         CURSOR_OFFSETS,
208 };
209
210 static const struct intel_device_info intel_sandybridge_d_info = {
211         .gen = 6, .num_pipes = 2,
212         .need_gfx_hws = 1, .has_hotplug = 1,
213         .has_fbc = 1,
214         .ring_mask = RENDER_RING | BSD_RING | BLT_RING,
215         .has_llc = 1,
216         GEN_DEFAULT_PIPEOFFSETS,
217         CURSOR_OFFSETS,
218 };
219
220 static const struct intel_device_info intel_sandybridge_m_info = {
221         .gen = 6, .is_mobile = 1, .num_pipes = 2,
222         .need_gfx_hws = 1, .has_hotplug = 1,
223         .has_fbc = 1,
224         .ring_mask = RENDER_RING | BSD_RING | BLT_RING,
225         .has_llc = 1,
226         GEN_DEFAULT_PIPEOFFSETS,
227         CURSOR_OFFSETS,
228 };
229
230 #define GEN7_FEATURES  \
231         .gen = 7, .num_pipes = 3, \
232         .need_gfx_hws = 1, .has_hotplug = 1, \
233         .has_fbc = 1, \
234         .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
235         .has_llc = 1, \
236         GEN_DEFAULT_PIPEOFFSETS, \
237         IVB_CURSOR_OFFSETS
238
239 static const struct intel_device_info intel_ivybridge_d_info = {
240         GEN7_FEATURES,
241         .is_ivybridge = 1,
242 };
243
244 static const struct intel_device_info intel_ivybridge_m_info = {
245         GEN7_FEATURES,
246         .is_ivybridge = 1,
247         .is_mobile = 1,
248 };
249
250 static const struct intel_device_info intel_ivybridge_q_info = {
251         GEN7_FEATURES,
252         .is_ivybridge = 1,
253         .num_pipes = 0, /* legal, last one wins */
254 };
255
256 #define VLV_FEATURES  \
257         .gen = 7, .num_pipes = 2, \
258         .need_gfx_hws = 1, .has_hotplug = 1, \
259         .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
260         .display_mmio_offset = VLV_DISPLAY_BASE, \
261         GEN_DEFAULT_PIPEOFFSETS, \
262         CURSOR_OFFSETS
263
264 static const struct intel_device_info intel_valleyview_m_info = {
265         VLV_FEATURES,
266         .is_valleyview = 1,
267         .is_mobile = 1,
268 };
269
270 static const struct intel_device_info intel_valleyview_d_info = {
271         VLV_FEATURES,
272         .is_valleyview = 1,
273 };
274
275 #define HSW_FEATURES  \
276         GEN7_FEATURES, \
277         .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \
278         .has_ddi = 1, \
279         .has_fpga_dbg = 1
280
281 static const struct intel_device_info intel_haswell_d_info = {
282         HSW_FEATURES,
283         .is_haswell = 1,
284 };
285
286 static const struct intel_device_info intel_haswell_m_info = {
287         HSW_FEATURES,
288         .is_haswell = 1,
289         .is_mobile = 1,
290 };
291
292 #define BDW_FEATURES \
293         HSW_FEATURES, \
294         BDW_COLORS
295
296 static const struct intel_device_info intel_broadwell_d_info = {
297         BDW_FEATURES,
298         .gen = 8,
299 };
300
301 static const struct intel_device_info intel_broadwell_m_info = {
302         BDW_FEATURES,
303         .gen = 8, .is_mobile = 1,
304 };
305
306 static const struct intel_device_info intel_broadwell_gt3d_info = {
307         BDW_FEATURES,
308         .gen = 8,
309         .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
310 };
311
312 static const struct intel_device_info intel_broadwell_gt3m_info = {
313         BDW_FEATURES,
314         .gen = 8, .is_mobile = 1,
315         .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
316 };
317
318 static const struct intel_device_info intel_cherryview_info = {
319         .gen = 8, .num_pipes = 3,
320         .need_gfx_hws = 1, .has_hotplug = 1,
321         .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
322         .is_cherryview = 1,
323         .display_mmio_offset = VLV_DISPLAY_BASE,
324         GEN_CHV_PIPEOFFSETS,
325         CURSOR_OFFSETS,
326         CHV_COLORS,
327 };
328
329 static const struct intel_device_info intel_skylake_info = {
330         BDW_FEATURES,
331         .is_skylake = 1,
332         .gen = 9,
333 };
334
335 static const struct intel_device_info intel_skylake_gt3_info = {
336         BDW_FEATURES,
337         .is_skylake = 1,
338         .gen = 9,
339         .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
340 };
341
342 static const struct intel_device_info intel_broxton_info = {
343         .is_preliminary = 1,
344         .is_broxton = 1,
345         .gen = 9,
346         .need_gfx_hws = 1, .has_hotplug = 1,
347         .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
348         .num_pipes = 3,
349         .has_ddi = 1,
350         .has_fpga_dbg = 1,
351         .has_fbc = 1,
352         GEN_DEFAULT_PIPEOFFSETS,
353         IVB_CURSOR_OFFSETS,
354         BDW_COLORS,
355 };
356
357 static const struct intel_device_info intel_kabylake_info = {
358         BDW_FEATURES,
359         .is_kabylake = 1,
360         .gen = 9,
361 };
362
363 static const struct intel_device_info intel_kabylake_gt3_info = {
364         BDW_FEATURES,
365         .is_kabylake = 1,
366         .gen = 9,
367         .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
368 };
369
370 static const struct intel_device_info intel_coffeelake_gt1_info = {
371         BDW_FEATURES, \
372         .is_kabylake = 1,
373         .gen = 9,
374 };
375
376 static const struct intel_device_info intel_coffeelake_gt2_info = {
377         BDW_FEATURES, \
378         .is_kabylake = 1,
379         .gen = 9,
380 };
381
382 static const struct intel_device_info intel_coffeelake_gt3_info = {
383         BDW_FEATURES, \
384         .is_kabylake = 1,
385         .gen = 9,
386         .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
387 };
388
389 /*
390  * Make sure any device matches here are from most specific to most
391  * general.  For example, since the Quanta match is based on the subsystem
392  * and subvendor IDs, we need it to come before the more general IVB
393  * PCI ID matches, otherwise we'll use the wrong info struct above.
394  */
395
396 static const struct pci_device_id pciidlist[] = {
397         INTEL_I830_IDS(&intel_i830_info),
398         INTEL_I845G_IDS(&intel_845g_info),
399         INTEL_I85X_IDS(&intel_i85x_info),
400         INTEL_I865G_IDS(&intel_i865g_info),
401         INTEL_I915G_IDS(&intel_i915g_info),
402         INTEL_I915GM_IDS(&intel_i915gm_info),
403         INTEL_I945G_IDS(&intel_i945g_info),
404         INTEL_I945GM_IDS(&intel_i945gm_info),
405         INTEL_I965G_IDS(&intel_i965g_info),
406         INTEL_G33_IDS(&intel_g33_info),
407         INTEL_I965GM_IDS(&intel_i965gm_info),
408         INTEL_GM45_IDS(&intel_gm45_info),
409         INTEL_G45_IDS(&intel_g45_info),
410         INTEL_PINEVIEW_IDS(&intel_pineview_info),
411         INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info),
412         INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info),
413         INTEL_SNB_D_IDS(&intel_sandybridge_d_info),
414         INTEL_SNB_M_IDS(&intel_sandybridge_m_info),
415         INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */
416         INTEL_IVB_M_IDS(&intel_ivybridge_m_info),
417         INTEL_IVB_D_IDS(&intel_ivybridge_d_info),
418         INTEL_HSW_D_IDS(&intel_haswell_d_info),
419         INTEL_HSW_M_IDS(&intel_haswell_m_info),
420         INTEL_VLV_M_IDS(&intel_valleyview_m_info),
421         INTEL_VLV_D_IDS(&intel_valleyview_d_info),
422         INTEL_BDW_GT12M_IDS(&intel_broadwell_m_info),
423         INTEL_BDW_GT12D_IDS(&intel_broadwell_d_info),
424         INTEL_BDW_GT3M_IDS(&intel_broadwell_gt3m_info),
425         INTEL_BDW_GT3D_IDS(&intel_broadwell_gt3d_info),
426         INTEL_CHV_IDS(&intel_cherryview_info),
427         INTEL_SKL_GT1_IDS(&intel_skylake_info),
428         INTEL_SKL_GT2_IDS(&intel_skylake_info),
429         INTEL_SKL_GT3_IDS(&intel_skylake_gt3_info),
430         INTEL_SKL_GT4_IDS(&intel_skylake_gt3_info),
431         INTEL_BXT_IDS(&intel_broxton_info),
432         INTEL_KBL_GT1_IDS(&intel_kabylake_info),
433         INTEL_KBL_GT2_IDS(&intel_kabylake_info),
434         INTEL_KBL_GT3_IDS(&intel_kabylake_gt3_info),
435         INTEL_KBL_GT4_IDS(&intel_kabylake_gt3_info),
436         INTEL_CFL_S_GT1_IDS(&intel_coffeelake_gt1_info),
437         INTEL_CFL_S_GT2_IDS(&intel_coffeelake_gt2_info),
438         INTEL_CFL_H_GT2_IDS(&intel_coffeelake_gt2_info),
439         INTEL_CFL_U_GT2_IDS(&intel_coffeelake_gt2_info),
440         INTEL_CFL_U_GT3_IDS(&intel_coffeelake_gt3_info),
441         INTEL_WHL_U_GT1_IDS(&intel_coffeelake_gt1_info),
442         INTEL_WHL_U_GT2_IDS(&intel_coffeelake_gt2_info),
443         INTEL_WHL_U_GT3_IDS(&intel_coffeelake_gt3_info),
444         {0, 0, 0}
445 };
446
447 #define PCI_VENDOR_INTEL        0x8086
448
449 static enum intel_pch intel_virt_detect_pch(struct drm_device *dev)
450 {
451         enum intel_pch ret = PCH_NOP;
452
453         /*
454          * In a virtualized passthrough environment we can be in a
455          * setup where the ISA bridge is not able to be passed through.
456          * In this case, a south bridge can be emulated and we have to
457          * make an educated guess as to which PCH is really there.
458          */
459
460         if (IS_GEN5(dev)) {
461                 ret = PCH_IBX;
462                 DRM_DEBUG_KMS("Assuming Ibex Peak PCH\n");
463         } else if (IS_GEN6(dev) || IS_IVYBRIDGE(dev)) {
464                 ret = PCH_CPT;
465                 DRM_DEBUG_KMS("Assuming CouarPoint PCH\n");
466         } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
467                 ret = PCH_LPT;
468                 DRM_DEBUG_KMS("Assuming LynxPoint PCH\n");
469         } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
470                 ret = PCH_SPT;
471                 DRM_DEBUG_KMS("Assuming SunrisePoint PCH\n");
472         }
473
474         return ret;
475 }
476
477 void intel_detect_pch(struct drm_device *dev)
478 {
479         struct drm_i915_private *dev_priv = dev->dev_private;
480         device_t pch = NULL;
481         struct pci_devinfo *di;
482
483         /* In all current cases, num_pipes is equivalent to the PCH_NOP setting
484          * (which really amounts to a PCH but no South Display).
485          */
486         if (INTEL_INFO(dev)->num_pipes == 0) {
487                 dev_priv->pch_type = PCH_NOP;
488                 return;
489         }
490
491         /* XXX The ISA bridge probe causes some old Core2 machines to hang */
492         if (INTEL_INFO(dev)->gen < 5)
493                 return;
494
495         /*
496          * The reason to probe ISA bridge instead of Dev31:Fun0 is to
497          * make graphics device passthrough work easy for VMM, that only
498          * need to expose ISA bridge to let driver know the real hardware
499          * underneath. This is a requirement from virtualization team.
500          *
501          * In some virtualized environments (e.g. XEN), there is irrelevant
502          * ISA bridge in the system. To work reliably, we should scan trhough
503          * all the ISA bridge devices and check for the first match, instead
504          * of only checking the first one.
505          */
506         di = NULL;
507
508         while ((pch = pci_iterate_class(&di, PCIC_BRIDGE, PCIS_BRIDGE_ISA))) {
509                 if (pci_get_vendor(pch) == PCI_VENDOR_INTEL) {
510                         unsigned short id = pci_get_device(pch) & INTEL_PCH_DEVICE_ID_MASK;
511                         dev_priv->pch_id = id;
512
513                         if (id == INTEL_PCH_IBX_DEVICE_ID_TYPE) {
514                                 dev_priv->pch_type = PCH_IBX;
515                                 DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
516                                 WARN_ON(!IS_GEN5(dev));
517                         } else if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
518                                 dev_priv->pch_type = PCH_CPT;
519                                 DRM_DEBUG_KMS("Found CougarPoint PCH\n");
520                                 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
521                         } else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
522                                 /* PantherPoint is CPT compatible */
523                                 dev_priv->pch_type = PCH_CPT;
524                                 DRM_DEBUG_KMS("Found PantherPoint PCH\n");
525                                 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
526                         } else if (id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
527                                 dev_priv->pch_type = PCH_LPT;
528                                 DRM_DEBUG_KMS("Found LynxPoint PCH\n");
529                                 WARN_ON(!IS_HASWELL(dev) && !IS_BROADWELL(dev));
530                                 WARN_ON(IS_HSW_ULT(dev) || IS_BDW_ULT(dev));
531                         } else if (id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
532                                 dev_priv->pch_type = PCH_LPT;
533                                 DRM_DEBUG_KMS("Found LynxPoint LP PCH\n");
534                                 WARN_ON(!IS_HASWELL(dev) && !IS_BROADWELL(dev));
535                                 WARN_ON(!IS_HSW_ULT(dev) && !IS_BDW_ULT(dev));
536                         } else if (id == INTEL_PCH_SPT_DEVICE_ID_TYPE) {
537                                 dev_priv->pch_type = PCH_SPT;
538                                 DRM_DEBUG_KMS("Found SunrisePoint PCH\n");
539                                 WARN_ON(!IS_SKYLAKE(dev) &&
540                                         !IS_KABYLAKE(dev));
541                         } else if (id == INTEL_PCH_SPT_LP_DEVICE_ID_TYPE) {
542                                 dev_priv->pch_type = PCH_SPT;
543                                 DRM_DEBUG_KMS("Found SunrisePoint LP PCH\n");
544                                 WARN_ON(!IS_SKYLAKE(dev) &&
545                                         !IS_KABYLAKE(dev));
546                         } else if (id == INTEL_PCH_KBP_DEVICE_ID_TYPE) {
547                                 dev_priv->pch_type = PCH_KBP;
548                                 DRM_DEBUG_KMS("Found KabyPoint PCH\n");
549                                 WARN_ON(!IS_KABYLAKE(dev));
550                         } else if ((id == INTEL_PCH_P2X_DEVICE_ID_TYPE) ||
551                                    (id == INTEL_PCH_P3X_DEVICE_ID_TYPE) ||
552                                    ((id == INTEL_PCH_QEMU_DEVICE_ID_TYPE) &&
553                                     1)) {
554                                 dev_priv->pch_type = intel_virt_detect_pch(dev);
555                         } else
556                                 continue;
557
558                         break;
559                 }
560         }
561         if (!pch)
562                 DRM_DEBUG_KMS("No PCH found.\n");
563
564 #if 0
565         pci_dev_put(pch);
566 #endif
567 }
568
569 bool i915_semaphore_is_enabled(struct drm_device *dev)
570 {
571         if (INTEL_INFO(dev)->gen < 6)
572                 return false;
573
574         if (i915.semaphores >= 0)
575                 return i915.semaphores;
576
577         /* TODO: make semaphores and Execlists play nicely together */
578         if (i915.enable_execlists)
579                 return false;
580
581         /* Until we get further testing... */
582         if (IS_GEN8(dev))
583                 return false;
584
585 #ifdef CONFIG_INTEL_IOMMU
586         /* Enable semaphores on SNB when IO remapping is off */
587         if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
588                 return false;
589 #endif
590
591         return true;
592 }
593
594 #ifdef __DragonFly__
595 #define IS_BUILTIN(blah)        0
596 #endif
597
598 static void intel_suspend_encoders(struct drm_i915_private *dev_priv)
599 {
600         struct drm_device *dev = dev_priv->dev;
601         struct intel_encoder *encoder;
602
603         drm_modeset_lock_all(dev);
604         for_each_intel_encoder(dev, encoder)
605                 if (encoder->suspend)
606                         encoder->suspend(encoder);
607         drm_modeset_unlock_all(dev);
608 }
609
610 static int vlv_resume_prepare(struct drm_i915_private *dev_priv,
611                               bool rpm_resume);
612 static int vlv_suspend_complete(struct drm_i915_private *dev_priv);
613
614 static bool suspend_to_idle(struct drm_i915_private *dev_priv)
615 {
616 #if IS_ENABLED(CONFIG_ACPI_SLEEP)
617         if (acpi_target_system_state() < ACPI_STATE_S3)
618                 return true;
619 #endif
620         return false;
621 }
622
623 static int i915_drm_suspend(struct drm_device *dev)
624 {
625         struct drm_i915_private *dev_priv = dev->dev_private;
626         pci_power_t opregion_target_state;
627         int error;
628
629         /* ignore lid events during suspend */
630         mutex_lock(&dev_priv->modeset_restore_lock);
631         dev_priv->modeset_restore = MODESET_SUSPENDED;
632         mutex_unlock(&dev_priv->modeset_restore_lock);
633
634         disable_rpm_wakeref_asserts(dev_priv);
635
636         /* We do a lot of poking in a lot of registers, make sure they work
637          * properly. */
638         intel_display_set_init_power(dev_priv, true);
639
640         drm_kms_helper_poll_disable(dev);
641
642 #if 0
643         pci_save_state(dev->pdev);
644 #endif
645
646         error = i915_gem_suspend(dev);
647         if (error) {
648                 dev_err(dev->dev,
649                         "GEM idle failed, resume might fail\n");
650                 goto out;
651         }
652
653         intel_guc_suspend(dev);
654
655         intel_suspend_gt_powersave(dev);
656
657         intel_display_suspend(dev);
658
659 #if 0
660         intel_dp_mst_suspend(dev);
661 #endif
662
663         intel_runtime_pm_disable_interrupts(dev_priv);
664         intel_hpd_cancel_work(dev_priv);
665
666         intel_suspend_encoders(dev_priv);
667
668         intel_suspend_hw(dev);
669
670         i915_gem_suspend_gtt_mappings(dev);
671
672         i915_save_state(dev);
673
674         opregion_target_state = suspend_to_idle(dev_priv) ? PCI_D1 : PCI_D3cold;
675         intel_opregion_notify_adapter(dev, opregion_target_state);
676
677         intel_uncore_forcewake_reset(dev, false);
678         intel_opregion_fini(dev);
679
680 #if 0
681         intel_fbdev_set_suspend(dev, FBINFO_STATE_SUSPENDED, true);
682 #endif
683
684         dev_priv->suspend_count++;
685
686         intel_display_set_init_power(dev_priv, false);
687
688         intel_csr_ucode_suspend(dev_priv);
689
690 out:
691         enable_rpm_wakeref_asserts(dev_priv);
692
693         return error;
694 }
695
696 static int i915_drm_suspend_late(struct drm_device *drm_dev, bool hibernation)
697 {
698         struct drm_i915_private *dev_priv = drm_dev->dev_private;
699         bool fw_csr;
700         int ret;
701
702         disable_rpm_wakeref_asserts(dev_priv);
703
704         fw_csr = !IS_BROXTON(dev_priv) &&
705                 suspend_to_idle(dev_priv) && dev_priv->csr.dmc_payload;
706         /*
707          * In case of firmware assisted context save/restore don't manually
708          * deinit the power domains. This also means the CSR/DMC firmware will
709          * stay active, it will power down any HW resources as required and
710          * also enable deeper system power states that would be blocked if the
711          * firmware was inactive.
712          */
713         if (!fw_csr)
714                 intel_power_domains_suspend(dev_priv);
715
716         ret = 0;
717         if (IS_BROXTON(dev_priv))
718                 bxt_enable_dc9(dev_priv);
719         else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
720                 hsw_enable_pc8(dev_priv);
721         else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
722                 ret = vlv_suspend_complete(dev_priv);
723
724         if (ret) {
725                 DRM_ERROR("Suspend complete failed: %d\n", ret);
726                 if (!fw_csr)
727                         intel_power_domains_init_hw(dev_priv, true);
728
729                 goto out;
730         }
731
732 #if 0
733         pci_disable_device(drm_dev->pdev);
734         /*
735          * During hibernation on some platforms the BIOS may try to access
736          * the device even though it's already in D3 and hang the machine. So
737          * leave the device in D0 on those platforms and hope the BIOS will
738          * power down the device properly. The issue was seen on multiple old
739          * GENs with different BIOS vendors, so having an explicit blacklist
740          * is inpractical; apply the workaround on everything pre GEN6. The
741          * platforms where the issue was seen:
742          * Lenovo Thinkpad X301, X61s, X60, T60, X41
743          * Fujitsu FSC S7110
744          * Acer Aspire 1830T
745          */
746         if (!(hibernation && INTEL_INFO(dev_priv)->gen < 6))
747                 pci_set_power_state(drm_dev->pdev, PCI_D3hot);
748 #endif
749
750         dev_priv->suspended_to_idle = suspend_to_idle(dev_priv);
751
752 out:
753         enable_rpm_wakeref_asserts(dev_priv);
754
755         return ret;
756 }
757
758 int i915_suspend_switcheroo(device_t kdev)
759 {
760         struct drm_device *dev = device_get_softc(kdev);
761         int error;
762
763         if (!dev || !dev->dev_private) {
764                 DRM_ERROR("dev: %p\n", dev);
765                 DRM_ERROR("DRM not initialized, aborting suspend.\n");
766                 return -ENODEV;
767         }
768
769 #if 0
770         if (WARN_ON_ONCE(state.event != PM_EVENT_SUSPEND &&
771                          state.event != PM_EVENT_FREEZE))
772                 return -EINVAL;
773 #endif
774
775         if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
776                 return 0;
777
778         error = i915_drm_suspend(dev);
779         if (error)
780                 return error;
781
782         return i915_drm_suspend_late(dev, false);
783 }
784
785 static int i915_drm_resume(struct drm_device *dev)
786 {
787         struct drm_i915_private *dev_priv = dev->dev_private;
788         int ret;
789
790         disable_rpm_wakeref_asserts(dev_priv);
791
792         ret = i915_ggtt_enable_hw(dev);
793         if (ret)
794                 DRM_ERROR("failed to re-enable GGTT\n");
795
796         intel_csr_ucode_resume(dev_priv);
797
798         mutex_lock(&dev->struct_mutex);
799         i915_gem_restore_gtt_mappings(dev);
800         mutex_unlock(&dev->struct_mutex);
801
802         i915_restore_state(dev);
803         intel_opregion_setup(dev);
804
805         intel_init_pch_refclk(dev);
806         drm_mode_config_reset(dev);
807
808         /*
809          * Interrupts have to be enabled before any batches are run. If not the
810          * GPU will hang. i915_gem_init_hw() will initiate batches to
811          * update/restore the context.
812          *
813          * Modeset enabling in intel_modeset_init_hw() also needs working
814          * interrupts.
815          */
816         intel_runtime_pm_enable_interrupts(dev_priv);
817
818         mutex_lock(&dev->struct_mutex);
819         if (i915_gem_init_hw(dev)) {
820                 DRM_ERROR("failed to re-initialize GPU, declaring wedged!\n");
821                         atomic_or(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
822         }
823         mutex_unlock(&dev->struct_mutex);
824
825         intel_guc_resume(dev);
826
827         intel_modeset_init_hw(dev);
828
829         spin_lock_irq(&dev_priv->irq_lock);
830         if (dev_priv->display.hpd_irq_setup)
831                 dev_priv->display.hpd_irq_setup(dev);
832         spin_unlock_irq(&dev_priv->irq_lock);
833
834         intel_dp_mst_resume(dev);
835
836         intel_display_resume(dev);
837
838         /*
839          * ... but also need to make sure that hotplug processing
840          * doesn't cause havoc. Like in the driver load code we don't
841          * bother with the tiny race here where we might loose hotplug
842          * notifications.
843          * */
844         intel_hpd_init(dev_priv);
845         /* Config may have changed between suspend and resume */
846         drm_helper_hpd_irq_event(dev);
847
848         intel_opregion_init(dev);
849
850         intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING, false);
851
852         mutex_lock(&dev_priv->modeset_restore_lock);
853         dev_priv->modeset_restore = MODESET_DONE;
854         mutex_unlock(&dev_priv->modeset_restore_lock);
855
856 #if 0
857         intel_opregion_notify_adapter(dev, PCI_D0);
858 #endif
859
860         drm_kms_helper_poll_enable(dev);
861
862         enable_rpm_wakeref_asserts(dev_priv);
863
864         return 0;
865 }
866
867 static int i915_drm_resume_early(struct drm_device *dev)
868 {
869         struct drm_i915_private *dev_priv = dev->dev_private;
870         int ret = 0;
871
872         /*
873          * We have a resume ordering issue with the snd-hda driver also
874          * requiring our device to be power up. Due to the lack of a
875          * parent/child relationship we currently solve this with an early
876          * resume hook.
877          *
878          * FIXME: This should be solved with a special hdmi sink device or
879          * similar so that power domains can be employed.
880          */
881
882         /*
883          * Note that we need to set the power state explicitly, since we
884          * powered off the device during freeze and the PCI core won't power
885          * it back up for us during thaw. Powering off the device during
886          * freeze is not a hard requirement though, and during the
887          * suspend/resume phases the PCI core makes sure we get here with the
888          * device powered on. So in case we change our freeze logic and keep
889          * the device powered we can also remove the following set power state
890          * call.
891          */
892 #if 0
893         ret = pci_set_power_state(dev->pdev, PCI_D0);
894         if (ret) {
895                 DRM_ERROR("failed to set PCI D0 power state (%d)\n", ret);
896                 goto out;
897         }
898
899         /*
900          * Note that pci_enable_device() first enables any parent bridge
901          * device and only then sets the power state for this device. The
902          * bridge enabling is a nop though, since bridge devices are resumed
903          * first. The order of enabling power and enabling the device is
904          * imposed by the PCI core as described above, so here we preserve the
905          * same order for the freeze/thaw phases.
906          *
907          * TODO: eventually we should remove pci_disable_device() /
908          * pci_enable_enable_device() from suspend/resume. Due to how they
909          * depend on the device enable refcount we can't anyway depend on them
910          * disabling/enabling the device.
911          */
912         if (pci_enable_device(dev->pdev)) {
913                 ret = -EIO;
914                 goto out;
915         }
916
917         pci_set_master(dev->pdev);
918 #endif
919
920         disable_rpm_wakeref_asserts(dev_priv);
921
922         if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
923                 ret = vlv_resume_prepare(dev_priv, false);
924         if (ret)
925                 DRM_ERROR("Resume prepare failed: %d, continuing anyway\n",
926                           ret);
927
928         intel_uncore_early_sanitize(dev, true);
929
930         if (IS_BROXTON(dev)) {
931                 if (!dev_priv->suspended_to_idle)
932                         gen9_sanitize_dc_state(dev_priv);
933                 bxt_disable_dc9(dev_priv);
934         } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
935                 hsw_disable_pc8(dev_priv);
936         }
937
938         intel_uncore_sanitize(dev);
939
940         if (IS_BROXTON(dev_priv) ||
941             !(dev_priv->suspended_to_idle && dev_priv->csr.dmc_payload))
942                 intel_power_domains_init_hw(dev_priv, true);
943
944         enable_rpm_wakeref_asserts(dev_priv);
945
946 #if 0
947 out:
948 #endif
949         dev_priv->suspended_to_idle = false;
950
951         return ret;
952 }
953
954 int i915_resume_switcheroo(struct drm_device *dev)
955 {
956         int ret;
957
958         if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
959                 return 0;
960
961         ret = i915_drm_resume_early(dev);
962         if (ret)
963                 return ret;
964
965         return i915_drm_resume(dev);
966 }
967
968 /* XXX Hack for the old *BSD drm code base
969  * The device id field is set at probe time */
970 static drm_pci_id_list_t i915_attach_list[] = {
971         {0x8086, 0, 0, "Intel i915 GPU"},
972         {0, 0, 0, NULL}
973 };
974
975 struct intel_device_info *
976 i915_get_device_id(int device)
977 {
978         const struct pci_device_id *did;
979
980         for (did = &pciidlist[0]; did->device != 0; did++) {
981                 if (did->device != device)
982                         continue;
983                 return (struct intel_device_info *)did->driver_data;
984         }
985         return (NULL);
986 }
987
988 static int i915_sysctl_init(struct drm_device *dev, struct sysctl_ctx_list *ctx,
989                             struct sysctl_oid *top)
990 {
991         return drm_add_busid_modesetting(dev, ctx, top);
992 }
993
994 extern devclass_t drm_devclass;
995
996 /**
997  * i915_reset - reset chip after a hang
998  * @dev: drm device to reset
999  *
1000  * Reset the chip.  Useful if a hang is detected. Returns zero on successful
1001  * reset or otherwise an error code.
1002  *
1003  * Procedure is fairly simple:
1004  *   - reset the chip using the reset reg
1005  *   - re-init context state
1006  *   - re-init hardware status page
1007  *   - re-init ring buffer
1008  *   - re-init interrupt state
1009  *   - re-init display
1010  */
1011 int i915_reset(struct drm_device *dev)
1012 {
1013         struct drm_i915_private *dev_priv = dev->dev_private;
1014         struct i915_gpu_error *error = &dev_priv->gpu_error;
1015         unsigned reset_counter;
1016         int ret;
1017
1018         intel_reset_gt_powersave(dev);
1019
1020         mutex_lock(&dev->struct_mutex);
1021
1022         /* Clear any previous failed attempts at recovery. Time to try again. */
1023         atomic_andnot(I915_WEDGED, &error->reset_counter);
1024
1025         /* Clear the reset-in-progress flag and increment the reset epoch. */
1026         reset_counter = atomic_inc_return(&error->reset_counter);
1027         if (WARN_ON(__i915_reset_in_progress(reset_counter))) {
1028                 ret = -EIO;
1029                 goto error;
1030         }
1031
1032         i915_gem_reset(dev);
1033
1034         ret = intel_gpu_reset(dev, ALL_ENGINES);
1035
1036         /* Also reset the gpu hangman. */
1037         if (error->stop_rings != 0) {
1038                 DRM_INFO("Simulated gpu hang, resetting stop_rings\n");
1039                 error->stop_rings = 0;
1040                 if (ret == -ENODEV) {
1041                         DRM_INFO("Reset not implemented, but ignoring "
1042                                  "error for simulated gpu hangs\n");
1043                         ret = 0;
1044                 }
1045         }
1046
1047         if (i915_stop_ring_allow_warn(dev_priv))
1048                 pr_notice("drm/i915: Resetting chip after gpu hang\n");
1049
1050         if (ret) {
1051                 if (ret != -ENODEV)
1052                         DRM_ERROR("Failed to reset chip: %i\n", ret);
1053                 else
1054                         DRM_DEBUG_DRIVER("GPU reset disabled\n");
1055                 goto error;
1056         }
1057
1058         intel_overlay_reset(dev_priv);
1059
1060         /* Ok, now get things going again... */
1061
1062         /*
1063          * Everything depends on having the GTT running, so we need to start
1064          * there.  Fortunately we don't need to do this unless we reset the
1065          * chip at a PCI level.
1066          *
1067          * Next we need to restore the context, but we don't use those
1068          * yet either...
1069          *
1070          * Ring buffer needs to be re-initialized in the KMS case, or if X
1071          * was running at the time of the reset (i.e. we weren't VT
1072          * switched away).
1073          */
1074         ret = i915_gem_init_hw(dev);
1075         if (ret) {
1076                 DRM_ERROR("Failed hw init on reset %d\n", ret);
1077                 goto error;
1078         }
1079
1080         mutex_unlock(&dev->struct_mutex);
1081
1082         /*
1083          * rps/rc6 re-init is necessary to restore state lost after the
1084          * reset and the re-install of gt irqs. Skip for ironlake per
1085          * previous concerns that it doesn't respond well to some forms
1086          * of re-init after reset.
1087          */
1088         if (INTEL_INFO(dev)->gen > 5)
1089                 intel_enable_gt_powersave(dev);
1090
1091         return 0;
1092
1093 error:
1094         atomic_or(I915_WEDGED, &error->reset_counter);
1095         mutex_unlock(&dev->struct_mutex);
1096         return ret;
1097 }
1098
1099 static int i915_pci_probe(device_t kdev)
1100 {
1101         int device, i = 0;
1102
1103         if (pci_get_class(kdev) != PCIC_DISPLAY)
1104                 return ENXIO;
1105
1106         if (pci_get_vendor(kdev) != PCI_VENDOR_INTEL)
1107                 return ENXIO;
1108
1109         device = pci_get_device(kdev);
1110
1111         for (i = 0; pciidlist[i].device != 0; i++) {
1112                 if (pciidlist[i].device == device) {
1113                         i915_attach_list[0].device = device;
1114                         return 0;
1115                 }
1116         }
1117
1118         return ENXIO;
1119 }
1120
1121 #if 0
1122 static void
1123 i915_pci_remove(struct pci_dev *pdev)
1124 {
1125         struct drm_device *dev = pci_get_drvdata(pdev);
1126
1127         drm_put_dev(dev);
1128 }
1129
1130 static int i915_pm_suspend(struct device *dev)
1131 {
1132         struct pci_dev *pdev = to_pci_dev(dev);
1133         struct drm_device *drm_dev = pci_get_drvdata(pdev);
1134
1135         if (!drm_dev || !drm_dev->dev_private) {
1136                 dev_err(dev, "DRM not initialized, aborting suspend.\n");
1137                 return -ENODEV;
1138         }
1139
1140         if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1141                 return 0;
1142
1143         return i915_drm_suspend(drm_dev);
1144 }
1145
1146 static int i915_pm_suspend_late(struct device *dev)
1147 {
1148         struct drm_device *drm_dev = dev_to_i915(dev)->dev;
1149
1150         /*
1151          * We have a suspend ordering issue with the snd-hda driver also
1152          * requiring our device to be power up. Due to the lack of a
1153          * parent/child relationship we currently solve this with an late
1154          * suspend hook.
1155          *
1156          * FIXME: This should be solved with a special hdmi sink device or
1157          * similar so that power domains can be employed.
1158          */
1159         if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1160                 return 0;
1161
1162         return i915_drm_suspend_late(drm_dev, false);
1163 }
1164
1165 static int i915_pm_poweroff_late(struct device *dev)
1166 {
1167         struct drm_device *drm_dev = dev_to_i915(dev)->dev;
1168
1169         if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1170                 return 0;
1171
1172         return i915_drm_suspend_late(drm_dev, true);
1173 }
1174
1175 static int i915_pm_resume_early(struct device *dev)
1176 {
1177         struct drm_device *drm_dev = dev_to_i915(dev)->dev;
1178
1179         if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1180                 return 0;
1181
1182         return i915_drm_resume_early(drm_dev);
1183 }
1184
1185 static int i915_pm_resume(struct device *dev)
1186 {
1187         struct drm_device *drm_dev = dev_to_i915(dev)->dev;
1188
1189         if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
1190                 return 0;
1191
1192         return i915_drm_resume(drm_dev);
1193 }
1194 #endif
1195
1196 /*
1197  * Save all Gunit registers that may be lost after a D3 and a subsequent
1198  * S0i[R123] transition. The list of registers needing a save/restore is
1199  * defined in the VLV2_S0IXRegs document. This documents marks all Gunit
1200  * registers in the following way:
1201  * - Driver: saved/restored by the driver
1202  * - Punit : saved/restored by the Punit firmware
1203  * - No, w/o marking: no need to save/restore, since the register is R/O or
1204  *                    used internally by the HW in a way that doesn't depend
1205  *                    keeping the content across a suspend/resume.
1206  * - Debug : used for debugging
1207  *
1208  * We save/restore all registers marked with 'Driver', with the following
1209  * exceptions:
1210  * - Registers out of use, including also registers marked with 'Debug'.
1211  *   These have no effect on the driver's operation, so we don't save/restore
1212  *   them to reduce the overhead.
1213  * - Registers that are fully setup by an initialization function called from
1214  *   the resume path. For example many clock gating and RPS/RC6 registers.
1215  * - Registers that provide the right functionality with their reset defaults.
1216  *
1217  * TODO: Except for registers that based on the above 3 criteria can be safely
1218  * ignored, we save/restore all others, practically treating the HW context as
1219  * a black-box for the driver. Further investigation is needed to reduce the
1220  * saved/restored registers even further, by following the same 3 criteria.
1221  */
1222 static void vlv_save_gunit_s0ix_state(struct drm_i915_private *dev_priv)
1223 {
1224         struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
1225         int i;
1226
1227         /* GAM 0x4000-0x4770 */
1228         s->wr_watermark         = I915_READ(GEN7_WR_WATERMARK);
1229         s->gfx_prio_ctrl        = I915_READ(GEN7_GFX_PRIO_CTRL);
1230         s->arb_mode             = I915_READ(ARB_MODE);
1231         s->gfx_pend_tlb0        = I915_READ(GEN7_GFX_PEND_TLB0);
1232         s->gfx_pend_tlb1        = I915_READ(GEN7_GFX_PEND_TLB1);
1233
1234         for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
1235                 s->lra_limits[i] = I915_READ(GEN7_LRA_LIMITS(i));
1236
1237         s->media_max_req_count  = I915_READ(GEN7_MEDIA_MAX_REQ_COUNT);
1238         s->gfx_max_req_count    = I915_READ(GEN7_GFX_MAX_REQ_COUNT);
1239
1240         s->render_hwsp          = I915_READ(RENDER_HWS_PGA_GEN7);
1241         s->ecochk               = I915_READ(GAM_ECOCHK);
1242         s->bsd_hwsp             = I915_READ(BSD_HWS_PGA_GEN7);
1243         s->blt_hwsp             = I915_READ(BLT_HWS_PGA_GEN7);
1244
1245         s->tlb_rd_addr          = I915_READ(GEN7_TLB_RD_ADDR);
1246
1247         /* MBC 0x9024-0x91D0, 0x8500 */
1248         s->g3dctl               = I915_READ(VLV_G3DCTL);
1249         s->gsckgctl             = I915_READ(VLV_GSCKGCTL);
1250         s->mbctl                = I915_READ(GEN6_MBCTL);
1251
1252         /* GCP 0x9400-0x9424, 0x8100-0x810C */
1253         s->ucgctl1              = I915_READ(GEN6_UCGCTL1);
1254         s->ucgctl3              = I915_READ(GEN6_UCGCTL3);
1255         s->rcgctl1              = I915_READ(GEN6_RCGCTL1);
1256         s->rcgctl2              = I915_READ(GEN6_RCGCTL2);
1257         s->rstctl               = I915_READ(GEN6_RSTCTL);
1258         s->misccpctl            = I915_READ(GEN7_MISCCPCTL);
1259
1260         /* GPM 0xA000-0xAA84, 0x8000-0x80FC */
1261         s->gfxpause             = I915_READ(GEN6_GFXPAUSE);
1262         s->rpdeuhwtc            = I915_READ(GEN6_RPDEUHWTC);
1263         s->rpdeuc               = I915_READ(GEN6_RPDEUC);
1264         s->ecobus               = I915_READ(ECOBUS);
1265         s->pwrdwnupctl          = I915_READ(VLV_PWRDWNUPCTL);
1266         s->rp_down_timeout      = I915_READ(GEN6_RP_DOWN_TIMEOUT);
1267         s->rp_deucsw            = I915_READ(GEN6_RPDEUCSW);
1268         s->rcubmabdtmr          = I915_READ(GEN6_RCUBMABDTMR);
1269         s->rcedata              = I915_READ(VLV_RCEDATA);
1270         s->spare2gh             = I915_READ(VLV_SPAREG2H);
1271
1272         /* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
1273         s->gt_imr               = I915_READ(GTIMR);
1274         s->gt_ier               = I915_READ(GTIER);
1275         s->pm_imr               = I915_READ(GEN6_PMIMR);
1276         s->pm_ier               = I915_READ(GEN6_PMIER);
1277
1278         for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
1279                 s->gt_scratch[i] = I915_READ(GEN7_GT_SCRATCH(i));
1280
1281         /* GT SA CZ domain, 0x100000-0x138124 */
1282         s->tilectl              = I915_READ(TILECTL);
1283         s->gt_fifoctl           = I915_READ(GTFIFOCTL);
1284         s->gtlc_wake_ctrl       = I915_READ(VLV_GTLC_WAKE_CTRL);
1285         s->gtlc_survive         = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
1286         s->pmwgicz              = I915_READ(VLV_PMWGICZ);
1287
1288         /* Gunit-Display CZ domain, 0x182028-0x1821CF */
1289         s->gu_ctl0              = I915_READ(VLV_GU_CTL0);
1290         s->gu_ctl1              = I915_READ(VLV_GU_CTL1);
1291         s->pcbr                 = I915_READ(VLV_PCBR);
1292         s->clock_gate_dis2      = I915_READ(VLV_GUNIT_CLOCK_GATE2);
1293
1294         /*
1295          * Not saving any of:
1296          * DFT,         0x9800-0x9EC0
1297          * SARB,        0xB000-0xB1FC
1298          * GAC,         0x5208-0x524C, 0x14000-0x14C000
1299          * PCI CFG
1300          */
1301 }
1302
1303 static void vlv_restore_gunit_s0ix_state(struct drm_i915_private *dev_priv)
1304 {
1305         struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
1306         u32 val;
1307         int i;
1308
1309         /* GAM 0x4000-0x4770 */
1310         I915_WRITE(GEN7_WR_WATERMARK,   s->wr_watermark);
1311         I915_WRITE(GEN7_GFX_PRIO_CTRL,  s->gfx_prio_ctrl);
1312         I915_WRITE(ARB_MODE,            s->arb_mode | (0xffff << 16));
1313         I915_WRITE(GEN7_GFX_PEND_TLB0,  s->gfx_pend_tlb0);
1314         I915_WRITE(GEN7_GFX_PEND_TLB1,  s->gfx_pend_tlb1);
1315
1316         for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
1317                 I915_WRITE(GEN7_LRA_LIMITS(i), s->lra_limits[i]);
1318
1319         I915_WRITE(GEN7_MEDIA_MAX_REQ_COUNT, s->media_max_req_count);
1320         I915_WRITE(GEN7_GFX_MAX_REQ_COUNT, s->gfx_max_req_count);
1321
1322         I915_WRITE(RENDER_HWS_PGA_GEN7, s->render_hwsp);
1323         I915_WRITE(GAM_ECOCHK,          s->ecochk);
1324         I915_WRITE(BSD_HWS_PGA_GEN7,    s->bsd_hwsp);
1325         I915_WRITE(BLT_HWS_PGA_GEN7,    s->blt_hwsp);
1326
1327         I915_WRITE(GEN7_TLB_RD_ADDR,    s->tlb_rd_addr);
1328
1329         /* MBC 0x9024-0x91D0, 0x8500 */
1330         I915_WRITE(VLV_G3DCTL,          s->g3dctl);
1331         I915_WRITE(VLV_GSCKGCTL,        s->gsckgctl);
1332         I915_WRITE(GEN6_MBCTL,          s->mbctl);
1333
1334         /* GCP 0x9400-0x9424, 0x8100-0x810C */
1335         I915_WRITE(GEN6_UCGCTL1,        s->ucgctl1);
1336         I915_WRITE(GEN6_UCGCTL3,        s->ucgctl3);
1337         I915_WRITE(GEN6_RCGCTL1,        s->rcgctl1);
1338         I915_WRITE(GEN6_RCGCTL2,        s->rcgctl2);
1339         I915_WRITE(GEN6_RSTCTL,         s->rstctl);
1340         I915_WRITE(GEN7_MISCCPCTL,      s->misccpctl);
1341
1342         /* GPM 0xA000-0xAA84, 0x8000-0x80FC */
1343         I915_WRITE(GEN6_GFXPAUSE,       s->gfxpause);
1344         I915_WRITE(GEN6_RPDEUHWTC,      s->rpdeuhwtc);
1345         I915_WRITE(GEN6_RPDEUC,         s->rpdeuc);
1346         I915_WRITE(ECOBUS,              s->ecobus);
1347         I915_WRITE(VLV_PWRDWNUPCTL,     s->pwrdwnupctl);
1348         I915_WRITE(GEN6_RP_DOWN_TIMEOUT,s->rp_down_timeout);
1349         I915_WRITE(GEN6_RPDEUCSW,       s->rp_deucsw);
1350         I915_WRITE(GEN6_RCUBMABDTMR,    s->rcubmabdtmr);
1351         I915_WRITE(VLV_RCEDATA,         s->rcedata);
1352         I915_WRITE(VLV_SPAREG2H,        s->spare2gh);
1353
1354         /* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
1355         I915_WRITE(GTIMR,               s->gt_imr);
1356         I915_WRITE(GTIER,               s->gt_ier);
1357         I915_WRITE(GEN6_PMIMR,          s->pm_imr);
1358         I915_WRITE(GEN6_PMIER,          s->pm_ier);
1359
1360         for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
1361                 I915_WRITE(GEN7_GT_SCRATCH(i), s->gt_scratch[i]);
1362
1363         /* GT SA CZ domain, 0x100000-0x138124 */
1364         I915_WRITE(TILECTL,                     s->tilectl);
1365         I915_WRITE(GTFIFOCTL,                   s->gt_fifoctl);
1366         /*
1367          * Preserve the GT allow wake and GFX force clock bit, they are not
1368          * be restored, as they are used to control the s0ix suspend/resume
1369          * sequence by the caller.
1370          */
1371         val = I915_READ(VLV_GTLC_WAKE_CTRL);
1372         val &= VLV_GTLC_ALLOWWAKEREQ;
1373         val |= s->gtlc_wake_ctrl & ~VLV_GTLC_ALLOWWAKEREQ;
1374         I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
1375
1376         val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
1377         val &= VLV_GFX_CLK_FORCE_ON_BIT;
1378         val |= s->gtlc_survive & ~VLV_GFX_CLK_FORCE_ON_BIT;
1379         I915_WRITE(VLV_GTLC_SURVIVABILITY_REG, val);
1380
1381         I915_WRITE(VLV_PMWGICZ,                 s->pmwgicz);
1382
1383         /* Gunit-Display CZ domain, 0x182028-0x1821CF */
1384         I915_WRITE(VLV_GU_CTL0,                 s->gu_ctl0);
1385         I915_WRITE(VLV_GU_CTL1,                 s->gu_ctl1);
1386         I915_WRITE(VLV_PCBR,                    s->pcbr);
1387         I915_WRITE(VLV_GUNIT_CLOCK_GATE2,       s->clock_gate_dis2);
1388 }
1389
1390 int vlv_force_gfx_clock(struct drm_i915_private *dev_priv, bool force_on)
1391 {
1392         u32 val;
1393         int err;
1394
1395 #define COND (I915_READ(VLV_GTLC_SURVIVABILITY_REG) & VLV_GFX_CLK_STATUS_BIT)
1396
1397         val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
1398         val &= ~VLV_GFX_CLK_FORCE_ON_BIT;
1399         if (force_on)
1400                 val |= VLV_GFX_CLK_FORCE_ON_BIT;
1401         I915_WRITE(VLV_GTLC_SURVIVABILITY_REG, val);
1402
1403         if (!force_on)
1404                 return 0;
1405
1406         err = wait_for(COND, 20);
1407         if (err)
1408                 DRM_ERROR("timeout waiting for GFX clock force-on (%08x)\n",
1409                           I915_READ(VLV_GTLC_SURVIVABILITY_REG));
1410
1411         return err;
1412 #undef COND
1413 }
1414
1415 static int vlv_allow_gt_wake(struct drm_i915_private *dev_priv, bool allow)
1416 {
1417         u32 val;
1418         int err = 0;
1419
1420         val = I915_READ(VLV_GTLC_WAKE_CTRL);
1421         val &= ~VLV_GTLC_ALLOWWAKEREQ;
1422         if (allow)
1423                 val |= VLV_GTLC_ALLOWWAKEREQ;
1424         I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
1425         POSTING_READ(VLV_GTLC_WAKE_CTRL);
1426
1427 #define COND (!!(I915_READ(VLV_GTLC_PW_STATUS) & VLV_GTLC_ALLOWWAKEACK) == \
1428               allow)
1429         err = wait_for(COND, 1);
1430         if (err)
1431                 DRM_ERROR("timeout disabling GT waking\n");
1432         return err;
1433 #undef COND
1434 }
1435
1436 static int vlv_wait_for_gt_wells(struct drm_i915_private *dev_priv,
1437                                  bool wait_for_on)
1438 {
1439         u32 mask;
1440         u32 val;
1441         int err;
1442
1443         mask = VLV_GTLC_PW_MEDIA_STATUS_MASK | VLV_GTLC_PW_RENDER_STATUS_MASK;
1444         val = wait_for_on ? mask : 0;
1445 #define COND ((I915_READ(VLV_GTLC_PW_STATUS) & mask) == val)
1446         if (COND)
1447                 return 0;
1448
1449         DRM_DEBUG_KMS("waiting for GT wells to go %s (%08x)\n",
1450                       onoff(wait_for_on),
1451                       I915_READ(VLV_GTLC_PW_STATUS));
1452
1453         /*
1454          * RC6 transitioning can be delayed up to 2 msec (see
1455          * valleyview_enable_rps), use 3 msec for safety.
1456          */
1457         err = wait_for(COND, 3);
1458         if (err)
1459                 DRM_ERROR("timeout waiting for GT wells to go %s\n",
1460                           onoff(wait_for_on));
1461
1462         return err;
1463 #undef COND
1464 }
1465
1466 static void vlv_check_no_gt_access(struct drm_i915_private *dev_priv)
1467 {
1468         if (!(I915_READ(VLV_GTLC_PW_STATUS) & VLV_GTLC_ALLOWWAKEERR))
1469                 return;
1470
1471         DRM_DEBUG_DRIVER("GT register access while GT waking disabled\n");
1472         I915_WRITE(VLV_GTLC_PW_STATUS, VLV_GTLC_ALLOWWAKEERR);
1473 }
1474
1475 static int vlv_suspend_complete(struct drm_i915_private *dev_priv)
1476 {
1477         u32 mask;
1478         int err;
1479
1480         /*
1481          * Bspec defines the following GT well on flags as debug only, so
1482          * don't treat them as hard failures.
1483          */
1484         (void)vlv_wait_for_gt_wells(dev_priv, false);
1485
1486         mask = VLV_GTLC_RENDER_CTX_EXISTS | VLV_GTLC_MEDIA_CTX_EXISTS;
1487         WARN_ON((I915_READ(VLV_GTLC_WAKE_CTRL) & mask) != mask);
1488
1489         vlv_check_no_gt_access(dev_priv);
1490
1491         err = vlv_force_gfx_clock(dev_priv, true);
1492         if (err)
1493                 goto err1;
1494
1495         err = vlv_allow_gt_wake(dev_priv, false);
1496         if (err)
1497                 goto err2;
1498
1499         if (!IS_CHERRYVIEW(dev_priv))
1500                 vlv_save_gunit_s0ix_state(dev_priv);
1501
1502         err = vlv_force_gfx_clock(dev_priv, false);
1503         if (err)
1504                 goto err2;
1505
1506         return 0;
1507
1508 err2:
1509         /* For safety always re-enable waking and disable gfx clock forcing */
1510         vlv_allow_gt_wake(dev_priv, true);
1511 err1:
1512         vlv_force_gfx_clock(dev_priv, false);
1513
1514         return err;
1515 }
1516
1517 static int vlv_resume_prepare(struct drm_i915_private *dev_priv,
1518                                 bool rpm_resume)
1519 {
1520         struct drm_device *dev = dev_priv->dev;
1521         int err;
1522         int ret;
1523
1524         /*
1525          * If any of the steps fail just try to continue, that's the best we
1526          * can do at this point. Return the first error code (which will also
1527          * leave RPM permanently disabled).
1528          */
1529         ret = vlv_force_gfx_clock(dev_priv, true);
1530
1531         if (!IS_CHERRYVIEW(dev_priv))
1532                 vlv_restore_gunit_s0ix_state(dev_priv);
1533
1534         err = vlv_allow_gt_wake(dev_priv, true);
1535         if (!ret)
1536                 ret = err;
1537
1538         err = vlv_force_gfx_clock(dev_priv, false);
1539         if (!ret)
1540                 ret = err;
1541
1542         vlv_check_no_gt_access(dev_priv);
1543
1544         if (rpm_resume) {
1545                 intel_init_clock_gating(dev);
1546                 i915_gem_restore_fences(dev);
1547         }
1548
1549         return ret;
1550 }
1551
1552 #if 0
1553 static int intel_runtime_suspend(struct device *device)
1554 {
1555         struct pci_dev *pdev = to_pci_dev(device);
1556         struct drm_device *dev = pci_get_drvdata(pdev);
1557         struct drm_i915_private *dev_priv = dev->dev_private;
1558         int ret;
1559
1560         if (WARN_ON_ONCE(!(dev_priv->rps.enabled && intel_enable_rc6(dev))))
1561                 return -ENODEV;
1562
1563         if (WARN_ON_ONCE(!HAS_RUNTIME_PM(dev)))
1564                 return -ENODEV;
1565
1566         DRM_DEBUG_KMS("Suspending device\n");
1567
1568         /*
1569          * We could deadlock here in case another thread holding struct_mutex
1570          * calls RPM suspend concurrently, since the RPM suspend will wait
1571          * first for this RPM suspend to finish. In this case the concurrent
1572          * RPM resume will be followed by its RPM suspend counterpart. Still
1573          * for consistency return -EAGAIN, which will reschedule this suspend.
1574          */
1575         if (!mutex_trylock(&dev->struct_mutex)) {
1576                 DRM_DEBUG_KMS("device lock contention, deffering suspend\n");
1577                 /*
1578                  * Bump the expiration timestamp, otherwise the suspend won't
1579                  * be rescheduled.
1580                  */
1581                 pm_runtime_mark_last_busy(device);
1582
1583                 return -EAGAIN;
1584         }
1585
1586         disable_rpm_wakeref_asserts(dev_priv);
1587
1588         /*
1589          * We are safe here against re-faults, since the fault handler takes
1590          * an RPM reference.
1591          */
1592         i915_gem_release_all_mmaps(dev_priv);
1593         mutex_unlock(&dev->struct_mutex);
1594
1595         cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
1596
1597         intel_guc_suspend(dev);
1598
1599         intel_suspend_gt_powersave(dev);
1600         intel_runtime_pm_disable_interrupts(dev_priv);
1601
1602         ret = 0;
1603         if (IS_BROXTON(dev_priv)) {
1604                 bxt_display_core_uninit(dev_priv);
1605                 bxt_enable_dc9(dev_priv);
1606         } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
1607                 hsw_enable_pc8(dev_priv);
1608         } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
1609                 ret = vlv_suspend_complete(dev_priv);
1610         }
1611
1612         if (ret) {
1613                 DRM_ERROR("Runtime suspend failed, disabling it (%d)\n", ret);
1614                 intel_runtime_pm_enable_interrupts(dev_priv);
1615
1616                 enable_rpm_wakeref_asserts(dev_priv);
1617
1618                 return ret;
1619         }
1620
1621         intel_uncore_forcewake_reset(dev, false);
1622
1623         enable_rpm_wakeref_asserts(dev_priv);
1624         WARN_ON_ONCE(atomic_read(&dev_priv->pm.wakeref_count));
1625
1626         if (intel_uncore_arm_unclaimed_mmio_detection(dev_priv))
1627                 DRM_ERROR("Unclaimed access detected prior to suspending\n");
1628
1629         dev_priv->pm.suspended = true;
1630
1631         /*
1632          * FIXME: We really should find a document that references the arguments
1633          * used below!
1634          */
1635         if (IS_BROADWELL(dev)) {
1636                 /*
1637                  * On Broadwell, if we use PCI_D1 the PCH DDI ports will stop
1638                  * being detected, and the call we do at intel_runtime_resume()
1639                  * won't be able to restore them. Since PCI_D3hot matches the
1640                  * actual specification and appears to be working, use it.
1641                  */
1642                 intel_opregion_notify_adapter(dev, PCI_D3hot);
1643         } else {
1644                 /*
1645                  * current versions of firmware which depend on this opregion
1646                  * notification have repurposed the D1 definition to mean
1647                  * "runtime suspended" vs. what you would normally expect (D3)
1648                  * to distinguish it from notifications that might be sent via
1649                  * the suspend path.
1650                  */
1651                 intel_opregion_notify_adapter(dev, PCI_D1);
1652         }
1653
1654         assert_forcewakes_inactive(dev_priv);
1655
1656         if (!IS_VALLEYVIEW(dev_priv) || !IS_CHERRYVIEW(dev_priv))
1657                 intel_hpd_poll_init(dev_priv);
1658
1659         DRM_DEBUG_KMS("Device suspended\n");
1660         return 0;
1661 }
1662
1663 static int intel_runtime_resume(struct device *device)
1664 {
1665         struct pci_dev *pdev = to_pci_dev(device);
1666         struct drm_device *dev = pci_get_drvdata(pdev);
1667         struct drm_i915_private *dev_priv = dev->dev_private;
1668         int ret = 0;
1669
1670         if (WARN_ON_ONCE(!HAS_RUNTIME_PM(dev)))
1671                 return -ENODEV;
1672
1673         DRM_DEBUG_KMS("Resuming device\n");
1674
1675         WARN_ON_ONCE(atomic_read(&dev_priv->pm.wakeref_count));
1676         disable_rpm_wakeref_asserts(dev_priv);
1677
1678         intel_opregion_notify_adapter(dev, PCI_D0);
1679         dev_priv->pm.suspended = false;
1680         if (intel_uncore_unclaimed_mmio(dev_priv))
1681                 DRM_DEBUG_DRIVER("Unclaimed access during suspend, bios?\n");
1682
1683         intel_guc_resume(dev);
1684
1685         if (IS_GEN6(dev_priv))
1686                 intel_init_pch_refclk(dev);
1687
1688         if (IS_BROXTON(dev)) {
1689                 bxt_disable_dc9(dev_priv);
1690                 bxt_display_core_init(dev_priv, true);
1691                 if (dev_priv->csr.dmc_payload &&
1692                     (dev_priv->csr.allowed_dc_mask & DC_STATE_EN_UPTO_DC5))
1693                         gen9_enable_dc5(dev_priv);
1694         } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
1695                 hsw_disable_pc8(dev_priv);
1696         } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
1697                 ret = vlv_resume_prepare(dev_priv, true);
1698         }
1699
1700         /*
1701          * No point of rolling back things in case of an error, as the best
1702          * we can do is to hope that things will still work (and disable RPM).
1703          */
1704         i915_gem_init_swizzling(dev);
1705         gen6_update_ring_freq(dev);
1706
1707         intel_runtime_pm_enable_interrupts(dev_priv);
1708
1709         /*
1710          * On VLV/CHV display interrupts are part of the display
1711          * power well, so hpd is reinitialized from there. For
1712          * everyone else do it here.
1713          */
1714         if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
1715                 intel_hpd_init(dev_priv);
1716
1717         intel_enable_gt_powersave(dev);
1718
1719         enable_rpm_wakeref_asserts(dev_priv);
1720
1721         if (ret)
1722                 DRM_ERROR("Runtime resume failed, disabling it (%d)\n", ret);
1723         else
1724                 DRM_DEBUG_KMS("Device resumed\n");
1725
1726         return ret;
1727 }
1728
1729 static const struct dev_pm_ops i915_pm_ops = {
1730         /*
1731          * S0ix (via system suspend) and S3 event handlers [PMSG_SUSPEND,
1732          * PMSG_RESUME]
1733          */
1734         .suspend = i915_pm_suspend,
1735         .suspend_late = i915_pm_suspend_late,
1736         .resume_early = i915_pm_resume_early,
1737         .resume = i915_pm_resume,
1738
1739         /*
1740          * S4 event handlers
1741          * @freeze, @freeze_late    : called (1) before creating the
1742          *                            hibernation image [PMSG_FREEZE] and
1743          *                            (2) after rebooting, before restoring
1744          *                            the image [PMSG_QUIESCE]
1745          * @thaw, @thaw_early       : called (1) after creating the hibernation
1746          *                            image, before writing it [PMSG_THAW]
1747          *                            and (2) after failing to create or
1748          *                            restore the image [PMSG_RECOVER]
1749          * @poweroff, @poweroff_late: called after writing the hibernation
1750          *                            image, before rebooting [PMSG_HIBERNATE]
1751          * @restore, @restore_early : called after rebooting and restoring the
1752          *                            hibernation image [PMSG_RESTORE]
1753          */
1754         .freeze = i915_pm_suspend,
1755         .freeze_late = i915_pm_suspend_late,
1756         .thaw_early = i915_pm_resume_early,
1757         .thaw = i915_pm_resume,
1758         .poweroff = i915_pm_suspend,
1759         .poweroff_late = i915_pm_poweroff_late,
1760         .restore_early = i915_pm_resume_early,
1761         .restore = i915_pm_resume,
1762
1763         /* S0ix (via runtime suspend) event handlers */
1764         .runtime_suspend = intel_runtime_suspend,
1765         .runtime_resume = intel_runtime_resume,
1766 };
1767
1768 static const struct vm_operations_struct i915_gem_vm_ops = {
1769         .fault = i915_gem_fault,
1770         .open = drm_gem_vm_open,
1771         .close = drm_gem_vm_close,
1772 };
1773
1774 static const struct file_operations i915_driver_fops = {
1775         .owner = THIS_MODULE,
1776         .open = drm_open,
1777         .release = drm_release,
1778         .unlocked_ioctl = drm_ioctl,
1779         .mmap = drm_gem_mmap,
1780         .poll = drm_poll,
1781         .read = drm_read,
1782 #ifdef CONFIG_COMPAT
1783         .compat_ioctl = i915_compat_ioctl,
1784 #endif
1785         .llseek = noop_llseek,
1786 };
1787 #endif
1788
1789 static struct cdev_pager_ops i915_gem_vm_ops = {
1790         .cdev_pg_fault  = i915_gem_fault,
1791         .cdev_pg_ctor   = i915_gem_pager_ctor,
1792         .cdev_pg_dtor   = i915_gem_pager_dtor
1793 };
1794
1795 static struct drm_driver driver = {
1796         /* Don't use MTRRs here; the Xserver or userspace app should
1797          * deal with them for Intel hardware.
1798          */
1799         .driver_features =
1800             DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM |
1801             DRIVER_RENDER | DRIVER_MODESET,
1802         .load = i915_driver_load,
1803         .unload = i915_driver_unload,
1804         .open = i915_driver_open,
1805         .lastclose = i915_driver_lastclose,
1806         .preclose = i915_driver_preclose,
1807         .postclose = i915_driver_postclose,
1808
1809 #if defined(CONFIG_DEBUG_FS)
1810         .debugfs_init = i915_debugfs_init,
1811         .debugfs_cleanup = i915_debugfs_cleanup,
1812 #endif
1813         .gem_free_object = i915_gem_free_object,
1814         .gem_vm_ops = &i915_gem_vm_ops,
1815
1816         .dumb_create = i915_gem_dumb_create,
1817         .dumb_map_offset = i915_gem_mmap_gtt,
1818         .dumb_destroy = drm_gem_dumb_destroy,
1819         .ioctls = i915_ioctls,
1820         .sysctl_init = i915_sysctl_init,
1821         .name = DRIVER_NAME,
1822         .desc = DRIVER_DESC,
1823         .date = DRIVER_DATE,
1824         .major = DRIVER_MAJOR,
1825         .minor = DRIVER_MINOR,
1826         .patchlevel = DRIVER_PATCHLEVEL,
1827 };
1828
1829 static int __init i915_init(void);
1830
1831 static int
1832 i915_attach(device_t kdev)
1833 {
1834         struct drm_device *dev = device_get_softc(kdev);
1835         int error;
1836         int dummy;
1837
1838         dev->driver = &driver;
1839         error = drm_attach(kdev, i915_attach_list);
1840
1841         /*
1842          * XXX hack - give the kvm_console time to come up before X starts
1843          * messing with everything, avoiding at least one deadlock.
1844          */
1845         tsleep(&dummy, 0, "i915_attach", hz*2);
1846
1847         return error;
1848 }
1849
1850 static device_method_t i915_methods[] = {
1851         /* Device interface */
1852         DEVMETHOD(device_probe,         i915_pci_probe),
1853         DEVMETHOD(device_attach,        i915_attach),
1854         DEVMETHOD(device_suspend,       i915_suspend_switcheroo),
1855         DEVMETHOD(device_resume,        i915_resume_switcheroo),
1856         DEVMETHOD(device_detach,        drm_release),
1857         DEVMETHOD_END
1858 };
1859
1860 static driver_t i915_driver = {
1861         "drm",
1862         i915_methods,
1863         sizeof(struct drm_device)
1864 };
1865
1866 static int __init i915_init(void)
1867 {
1868         driver.num_ioctls = i915_max_ioctl;
1869
1870         /*
1871          * Enable KMS by default, unless explicitly overriden by
1872          * either the i915.modeset prarameter or by the
1873          * vga_text_mode_force boot option.
1874          */
1875
1876         if (i915.modeset == 0)
1877                 driver.driver_features &= ~DRIVER_MODESET;
1878
1879         if (vgacon_text_force() && i915.modeset == -1)
1880                 driver.driver_features &= ~DRIVER_MODESET;
1881
1882         if (!(driver.driver_features & DRIVER_MODESET)) {
1883                 /* Silently fail loading to not upset userspace. */
1884                 DRM_DEBUG_DRIVER("KMS and UMS disabled.\n");
1885                 return 0;
1886         }
1887
1888         if (i915.nuclear_pageflip)
1889                 driver.driver_features |= DRIVER_ATOMIC;
1890
1891 #if 0
1892         return drm_pci_init(&driver, &i915_pci_driver);
1893 #else
1894         return 1;
1895 #endif
1896 }
1897
1898 #if 0
1899 static void __exit i915_exit(void)
1900 {
1901         if (!(driver.driver_features & DRIVER_MODESET))
1902                 return; /* Never loaded a driver. */
1903
1904         drm_pci_exit(&driver, &i915_pci_driver);
1905 }
1906 #endif
1907
1908 module_init(i915_init);
1909
1910 DRIVER_MODULE_ORDERED(i915, vgapci, i915_driver, drm_devclass, NULL, NULL, SI_ORDER_ANY);
1911 MODULE_DEPEND(i915, drm, 1, 1, 1);
1912 #ifdef CONFIG_ACPI
1913 MODULE_DEPEND(i915, acpi, 1, 1, 1);
1914 #endif