c7d689e4247c336f21215aa56ebe83d0ec6eed90
[deliverable/linux.git] / drivers / gpu / 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 "drmP.h"
32 #include "drm.h"
33 #include "i915_drm.h"
34 #include "i915_drv.h"
35 #include "intel_drv.h"
36
37 #include <linux/console.h>
38 #include <linux/module.h>
39 #include "drm_crtc_helper.h"
40
41 static int i915_modeset __read_mostly = -1;
42 module_param_named(modeset, i915_modeset, int, 0400);
43 MODULE_PARM_DESC(modeset,
44 "Use kernel modesetting [KMS] (0=DRM_I915_KMS from .config, "
45 "1=on, -1=force vga console preference [default])");
46
47 unsigned int i915_fbpercrtc __always_unused = 0;
48 module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400);
49
50 int i915_panel_ignore_lid __read_mostly = 0;
51 module_param_named(panel_ignore_lid, i915_panel_ignore_lid, int, 0600);
52 MODULE_PARM_DESC(panel_ignore_lid,
53 "Override lid status (0=autodetect [default], 1=lid open, "
54 "-1=lid closed)");
55
56 unsigned int i915_powersave __read_mostly = 1;
57 module_param_named(powersave, i915_powersave, int, 0600);
58 MODULE_PARM_DESC(powersave,
59 "Enable powersavings, fbc, downclocking, etc. (default: true)");
60
61 int i915_semaphores __read_mostly = -1;
62 module_param_named(semaphores, i915_semaphores, int, 0600);
63 MODULE_PARM_DESC(semaphores,
64 "Use semaphores for inter-ring sync (default: -1 (use per-chip defaults))");
65
66 int i915_enable_rc6 __read_mostly = -1;
67 module_param_named(i915_enable_rc6, i915_enable_rc6, int, 0600);
68 MODULE_PARM_DESC(i915_enable_rc6,
69 "Enable power-saving render C-state 6. "
70 "Different stages can be selected via bitmask values "
71 "(0 = disable; 1 = enable rc6; 2 = enable deep rc6; 4 = enable deepest rc6). "
72 "For example, 3 would enable rc6 and deep rc6, and 7 would enable everything. "
73 "default: -1 (use per-chip default)");
74
75 int i915_enable_fbc __read_mostly = -1;
76 module_param_named(i915_enable_fbc, i915_enable_fbc, int, 0600);
77 MODULE_PARM_DESC(i915_enable_fbc,
78 "Enable frame buffer compression for power savings "
79 "(default: -1 (use per-chip default))");
80
81 unsigned int i915_lvds_downclock __read_mostly = 0;
82 module_param_named(lvds_downclock, i915_lvds_downclock, int, 0400);
83 MODULE_PARM_DESC(lvds_downclock,
84 "Use panel (LVDS/eDP) downclocking for power savings "
85 "(default: false)");
86
87 int i915_panel_use_ssc __read_mostly = -1;
88 module_param_named(lvds_use_ssc, i915_panel_use_ssc, int, 0600);
89 MODULE_PARM_DESC(lvds_use_ssc,
90 "Use Spread Spectrum Clock with panels [LVDS/eDP] "
91 "(default: auto from VBT)");
92
93 int i915_vbt_sdvo_panel_type __read_mostly = -1;
94 module_param_named(vbt_sdvo_panel_type, i915_vbt_sdvo_panel_type, int, 0600);
95 MODULE_PARM_DESC(vbt_sdvo_panel_type,
96 "Override selection of SDVO panel mode in the VBT "
97 "(default: auto)");
98
99 static bool i915_try_reset __read_mostly = true;
100 module_param_named(reset, i915_try_reset, bool, 0600);
101 MODULE_PARM_DESC(reset, "Attempt GPU resets (default: true)");
102
103 bool i915_enable_hangcheck __read_mostly = true;
104 module_param_named(enable_hangcheck, i915_enable_hangcheck, bool, 0644);
105 MODULE_PARM_DESC(enable_hangcheck,
106 "Periodically check GPU activity for detecting hangs. "
107 "WARNING: Disabling this can cause system wide hangs. "
108 "(default: true)");
109
110 bool i915_enable_ppgtt __read_mostly = 1;
111 module_param_named(i915_enable_ppgtt, i915_enable_ppgtt, bool, 0600);
112 MODULE_PARM_DESC(i915_enable_ppgtt,
113 "Enable PPGTT (default: true)");
114
115 static struct drm_driver driver;
116 extern int intel_agp_enabled;
117
118 #define INTEL_VGA_DEVICE(id, info) { \
119 .class = PCI_BASE_CLASS_DISPLAY << 16, \
120 .class_mask = 0xff0000, \
121 .vendor = 0x8086, \
122 .device = id, \
123 .subvendor = PCI_ANY_ID, \
124 .subdevice = PCI_ANY_ID, \
125 .driver_data = (unsigned long) info }
126
127 static const struct intel_device_info intel_i830_info = {
128 .gen = 2, .is_mobile = 1, .cursor_needs_physical = 1,
129 .has_overlay = 1, .overlay_needs_physical = 1,
130 };
131
132 static const struct intel_device_info intel_845g_info = {
133 .gen = 2,
134 .has_overlay = 1, .overlay_needs_physical = 1,
135 };
136
137 static const struct intel_device_info intel_i85x_info = {
138 .gen = 2, .is_i85x = 1, .is_mobile = 1,
139 .cursor_needs_physical = 1,
140 .has_overlay = 1, .overlay_needs_physical = 1,
141 };
142
143 static const struct intel_device_info intel_i865g_info = {
144 .gen = 2,
145 .has_overlay = 1, .overlay_needs_physical = 1,
146 };
147
148 static const struct intel_device_info intel_i915g_info = {
149 .gen = 3, .is_i915g = 1, .cursor_needs_physical = 1,
150 .has_overlay = 1, .overlay_needs_physical = 1,
151 };
152 static const struct intel_device_info intel_i915gm_info = {
153 .gen = 3, .is_mobile = 1,
154 .cursor_needs_physical = 1,
155 .has_overlay = 1, .overlay_needs_physical = 1,
156 .supports_tv = 1,
157 };
158 static const struct intel_device_info intel_i945g_info = {
159 .gen = 3, .has_hotplug = 1, .cursor_needs_physical = 1,
160 .has_overlay = 1, .overlay_needs_physical = 1,
161 };
162 static const struct intel_device_info intel_i945gm_info = {
163 .gen = 3, .is_i945gm = 1, .is_mobile = 1,
164 .has_hotplug = 1, .cursor_needs_physical = 1,
165 .has_overlay = 1, .overlay_needs_physical = 1,
166 .supports_tv = 1,
167 };
168
169 static const struct intel_device_info intel_i965g_info = {
170 .gen = 4, .is_broadwater = 1,
171 .has_hotplug = 1,
172 .has_overlay = 1,
173 };
174
175 static const struct intel_device_info intel_i965gm_info = {
176 .gen = 4, .is_crestline = 1,
177 .is_mobile = 1, .has_fbc = 1, .has_hotplug = 1,
178 .has_overlay = 1,
179 .supports_tv = 1,
180 };
181
182 static const struct intel_device_info intel_g33_info = {
183 .gen = 3, .is_g33 = 1,
184 .need_gfx_hws = 1, .has_hotplug = 1,
185 .has_overlay = 1,
186 };
187
188 static const struct intel_device_info intel_g45_info = {
189 .gen = 4, .is_g4x = 1, .need_gfx_hws = 1,
190 .has_pipe_cxsr = 1, .has_hotplug = 1,
191 .has_bsd_ring = 1,
192 };
193
194 static const struct intel_device_info intel_gm45_info = {
195 .gen = 4, .is_g4x = 1,
196 .is_mobile = 1, .need_gfx_hws = 1, .has_fbc = 1,
197 .has_pipe_cxsr = 1, .has_hotplug = 1,
198 .supports_tv = 1,
199 .has_bsd_ring = 1,
200 };
201
202 static const struct intel_device_info intel_pineview_info = {
203 .gen = 3, .is_g33 = 1, .is_pineview = 1, .is_mobile = 1,
204 .need_gfx_hws = 1, .has_hotplug = 1,
205 .has_overlay = 1,
206 };
207
208 static const struct intel_device_info intel_ironlake_d_info = {
209 .gen = 5,
210 .need_gfx_hws = 1, .has_hotplug = 1,
211 .has_bsd_ring = 1,
212 };
213
214 static const struct intel_device_info intel_ironlake_m_info = {
215 .gen = 5, .is_mobile = 1,
216 .need_gfx_hws = 1, .has_hotplug = 1,
217 .has_fbc = 1,
218 .has_bsd_ring = 1,
219 };
220
221 static const struct intel_device_info intel_sandybridge_d_info = {
222 .gen = 6,
223 .need_gfx_hws = 1, .has_hotplug = 1,
224 .has_bsd_ring = 1,
225 .has_blt_ring = 1,
226 .has_llc = 1,
227 };
228
229 static const struct intel_device_info intel_sandybridge_m_info = {
230 .gen = 6, .is_mobile = 1,
231 .need_gfx_hws = 1, .has_hotplug = 1,
232 .has_fbc = 1,
233 .has_bsd_ring = 1,
234 .has_blt_ring = 1,
235 .has_llc = 1,
236 };
237
238 static const struct intel_device_info intel_ivybridge_d_info = {
239 .is_ivybridge = 1, .gen = 7,
240 .need_gfx_hws = 1, .has_hotplug = 1,
241 .has_bsd_ring = 1,
242 .has_blt_ring = 1,
243 .has_llc = 1,
244 };
245
246 static const struct intel_device_info intel_ivybridge_m_info = {
247 .is_ivybridge = 1, .gen = 7, .is_mobile = 1,
248 .need_gfx_hws = 1, .has_hotplug = 1,
249 .has_fbc = 0, /* FBC is not enabled on Ivybridge mobile yet */
250 .has_bsd_ring = 1,
251 .has_blt_ring = 1,
252 .has_llc = 1,
253 };
254
255 static const struct pci_device_id pciidlist[] = { /* aka */
256 INTEL_VGA_DEVICE(0x3577, &intel_i830_info), /* I830_M */
257 INTEL_VGA_DEVICE(0x2562, &intel_845g_info), /* 845_G */
258 INTEL_VGA_DEVICE(0x3582, &intel_i85x_info), /* I855_GM */
259 INTEL_VGA_DEVICE(0x358e, &intel_i85x_info),
260 INTEL_VGA_DEVICE(0x2572, &intel_i865g_info), /* I865_G */
261 INTEL_VGA_DEVICE(0x2582, &intel_i915g_info), /* I915_G */
262 INTEL_VGA_DEVICE(0x258a, &intel_i915g_info), /* E7221_G */
263 INTEL_VGA_DEVICE(0x2592, &intel_i915gm_info), /* I915_GM */
264 INTEL_VGA_DEVICE(0x2772, &intel_i945g_info), /* I945_G */
265 INTEL_VGA_DEVICE(0x27a2, &intel_i945gm_info), /* I945_GM */
266 INTEL_VGA_DEVICE(0x27ae, &intel_i945gm_info), /* I945_GME */
267 INTEL_VGA_DEVICE(0x2972, &intel_i965g_info), /* I946_GZ */
268 INTEL_VGA_DEVICE(0x2982, &intel_i965g_info), /* G35_G */
269 INTEL_VGA_DEVICE(0x2992, &intel_i965g_info), /* I965_Q */
270 INTEL_VGA_DEVICE(0x29a2, &intel_i965g_info), /* I965_G */
271 INTEL_VGA_DEVICE(0x29b2, &intel_g33_info), /* Q35_G */
272 INTEL_VGA_DEVICE(0x29c2, &intel_g33_info), /* G33_G */
273 INTEL_VGA_DEVICE(0x29d2, &intel_g33_info), /* Q33_G */
274 INTEL_VGA_DEVICE(0x2a02, &intel_i965gm_info), /* I965_GM */
275 INTEL_VGA_DEVICE(0x2a12, &intel_i965gm_info), /* I965_GME */
276 INTEL_VGA_DEVICE(0x2a42, &intel_gm45_info), /* GM45_G */
277 INTEL_VGA_DEVICE(0x2e02, &intel_g45_info), /* IGD_E_G */
278 INTEL_VGA_DEVICE(0x2e12, &intel_g45_info), /* Q45_G */
279 INTEL_VGA_DEVICE(0x2e22, &intel_g45_info), /* G45_G */
280 INTEL_VGA_DEVICE(0x2e32, &intel_g45_info), /* G41_G */
281 INTEL_VGA_DEVICE(0x2e42, &intel_g45_info), /* B43_G */
282 INTEL_VGA_DEVICE(0x2e92, &intel_g45_info), /* B43_G.1 */
283 INTEL_VGA_DEVICE(0xa001, &intel_pineview_info),
284 INTEL_VGA_DEVICE(0xa011, &intel_pineview_info),
285 INTEL_VGA_DEVICE(0x0042, &intel_ironlake_d_info),
286 INTEL_VGA_DEVICE(0x0046, &intel_ironlake_m_info),
287 INTEL_VGA_DEVICE(0x0102, &intel_sandybridge_d_info),
288 INTEL_VGA_DEVICE(0x0112, &intel_sandybridge_d_info),
289 INTEL_VGA_DEVICE(0x0122, &intel_sandybridge_d_info),
290 INTEL_VGA_DEVICE(0x0106, &intel_sandybridge_m_info),
291 INTEL_VGA_DEVICE(0x0116, &intel_sandybridge_m_info),
292 INTEL_VGA_DEVICE(0x0126, &intel_sandybridge_m_info),
293 INTEL_VGA_DEVICE(0x010A, &intel_sandybridge_d_info),
294 INTEL_VGA_DEVICE(0x0156, &intel_ivybridge_m_info), /* GT1 mobile */
295 INTEL_VGA_DEVICE(0x0166, &intel_ivybridge_m_info), /* GT2 mobile */
296 INTEL_VGA_DEVICE(0x0152, &intel_ivybridge_d_info), /* GT1 desktop */
297 INTEL_VGA_DEVICE(0x0162, &intel_ivybridge_d_info), /* GT2 desktop */
298 INTEL_VGA_DEVICE(0x015a, &intel_ivybridge_d_info), /* GT1 server */
299 {0, 0, 0}
300 };
301
302 #if defined(CONFIG_DRM_I915_KMS)
303 MODULE_DEVICE_TABLE(pci, pciidlist);
304 #endif
305
306 #define INTEL_PCH_DEVICE_ID_MASK 0xff00
307 #define INTEL_PCH_IBX_DEVICE_ID_TYPE 0x3b00
308 #define INTEL_PCH_CPT_DEVICE_ID_TYPE 0x1c00
309 #define INTEL_PCH_PPT_DEVICE_ID_TYPE 0x1e00
310
311 void intel_detect_pch(struct drm_device *dev)
312 {
313 struct drm_i915_private *dev_priv = dev->dev_private;
314 struct pci_dev *pch;
315
316 /*
317 * The reason to probe ISA bridge instead of Dev31:Fun0 is to
318 * make graphics device passthrough work easy for VMM, that only
319 * need to expose ISA bridge to let driver know the real hardware
320 * underneath. This is a requirement from virtualization team.
321 */
322 pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
323 if (pch) {
324 if (pch->vendor == PCI_VENDOR_ID_INTEL) {
325 int id;
326 id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
327
328 if (id == INTEL_PCH_IBX_DEVICE_ID_TYPE) {
329 dev_priv->pch_type = PCH_IBX;
330 DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
331 } else if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
332 dev_priv->pch_type = PCH_CPT;
333 DRM_DEBUG_KMS("Found CougarPoint PCH\n");
334 } else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
335 /* PantherPoint is CPT compatible */
336 dev_priv->pch_type = PCH_CPT;
337 DRM_DEBUG_KMS("Found PatherPoint PCH\n");
338 }
339 }
340 pci_dev_put(pch);
341 }
342 }
343
344 void __gen6_gt_force_wake_get(struct drm_i915_private *dev_priv)
345 {
346 int count;
347
348 count = 0;
349 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
350 udelay(10);
351
352 I915_WRITE_NOTRACE(FORCEWAKE, 1);
353 POSTING_READ(FORCEWAKE);
354
355 count = 0;
356 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1) == 0)
357 udelay(10);
358 }
359
360 void __gen6_gt_force_wake_mt_get(struct drm_i915_private *dev_priv)
361 {
362 int count;
363
364 count = 0;
365 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_MT_ACK) & 1))
366 udelay(10);
367
368 I915_WRITE_NOTRACE(FORCEWAKE_MT, (1<<16) | 1);
369 POSTING_READ(FORCEWAKE_MT);
370
371 count = 0;
372 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_MT_ACK) & 1) == 0)
373 udelay(10);
374 }
375
376 /*
377 * Generally this is called implicitly by the register read function. However,
378 * if some sequence requires the GT to not power down then this function should
379 * be called at the beginning of the sequence followed by a call to
380 * gen6_gt_force_wake_put() at the end of the sequence.
381 */
382 void gen6_gt_force_wake_get(struct drm_i915_private *dev_priv)
383 {
384 unsigned long irqflags;
385
386 spin_lock_irqsave(&dev_priv->gt_lock, irqflags);
387 if (dev_priv->forcewake_count++ == 0)
388 dev_priv->display.force_wake_get(dev_priv);
389 spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags);
390 }
391
392 static void gen6_gt_check_fifodbg(struct drm_i915_private *dev_priv)
393 {
394 u32 gtfifodbg;
395 gtfifodbg = I915_READ_NOTRACE(GTFIFODBG);
396 if (WARN(gtfifodbg & GT_FIFO_CPU_ERROR_MASK,
397 "MMIO read or write has been dropped %x\n", gtfifodbg))
398 I915_WRITE_NOTRACE(GTFIFODBG, GT_FIFO_CPU_ERROR_MASK);
399 }
400
401 void __gen6_gt_force_wake_put(struct drm_i915_private *dev_priv)
402 {
403 I915_WRITE_NOTRACE(FORCEWAKE, 0);
404 /* The below doubles as a POSTING_READ */
405 gen6_gt_check_fifodbg(dev_priv);
406 }
407
408 void __gen6_gt_force_wake_mt_put(struct drm_i915_private *dev_priv)
409 {
410 I915_WRITE_NOTRACE(FORCEWAKE_MT, (1<<16) | 0);
411 /* The below doubles as a POSTING_READ */
412 gen6_gt_check_fifodbg(dev_priv);
413 }
414
415 /*
416 * see gen6_gt_force_wake_get()
417 */
418 void gen6_gt_force_wake_put(struct drm_i915_private *dev_priv)
419 {
420 unsigned long irqflags;
421
422 spin_lock_irqsave(&dev_priv->gt_lock, irqflags);
423 if (--dev_priv->forcewake_count == 0)
424 dev_priv->display.force_wake_put(dev_priv);
425 spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags);
426 }
427
428 int __gen6_gt_wait_for_fifo(struct drm_i915_private *dev_priv)
429 {
430 int ret = 0;
431
432 if (dev_priv->gt_fifo_count < GT_FIFO_NUM_RESERVED_ENTRIES) {
433 int loop = 500;
434 u32 fifo = I915_READ_NOTRACE(GT_FIFO_FREE_ENTRIES);
435 while (fifo <= GT_FIFO_NUM_RESERVED_ENTRIES && loop--) {
436 udelay(10);
437 fifo = I915_READ_NOTRACE(GT_FIFO_FREE_ENTRIES);
438 }
439 if (WARN_ON(loop < 0 && fifo <= GT_FIFO_NUM_RESERVED_ENTRIES))
440 ++ret;
441 dev_priv->gt_fifo_count = fifo;
442 }
443 dev_priv->gt_fifo_count--;
444
445 return ret;
446 }
447
448 static int i915_drm_freeze(struct drm_device *dev)
449 {
450 struct drm_i915_private *dev_priv = dev->dev_private;
451
452 drm_kms_helper_poll_disable(dev);
453
454 pci_save_state(dev->pdev);
455
456 /* If KMS is active, we do the leavevt stuff here */
457 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
458 int error = i915_gem_idle(dev);
459 if (error) {
460 dev_err(&dev->pdev->dev,
461 "GEM idle failed, resume might fail\n");
462 return error;
463 }
464 drm_irq_uninstall(dev);
465 }
466
467 i915_save_state(dev);
468
469 intel_opregion_fini(dev);
470
471 /* Modeset on resume, not lid events */
472 dev_priv->modeset_on_lid = 0;
473
474 console_lock();
475 intel_fbdev_set_suspend(dev, 1);
476 console_unlock();
477
478 return 0;
479 }
480
481 int i915_suspend(struct drm_device *dev, pm_message_t state)
482 {
483 int error;
484
485 if (!dev || !dev->dev_private) {
486 DRM_ERROR("dev: %p\n", dev);
487 DRM_ERROR("DRM not initialized, aborting suspend.\n");
488 return -ENODEV;
489 }
490
491 if (state.event == PM_EVENT_PRETHAW)
492 return 0;
493
494
495 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
496 return 0;
497
498 error = i915_drm_freeze(dev);
499 if (error)
500 return error;
501
502 if (state.event == PM_EVENT_SUSPEND) {
503 /* Shut down the device */
504 pci_disable_device(dev->pdev);
505 pci_set_power_state(dev->pdev, PCI_D3hot);
506 }
507
508 return 0;
509 }
510
511 static int i915_drm_thaw(struct drm_device *dev)
512 {
513 struct drm_i915_private *dev_priv = dev->dev_private;
514 int error = 0;
515
516 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
517 mutex_lock(&dev->struct_mutex);
518 i915_gem_restore_gtt_mappings(dev);
519 mutex_unlock(&dev->struct_mutex);
520 }
521
522 i915_restore_state(dev);
523 intel_opregion_setup(dev);
524
525 /* KMS EnterVT equivalent */
526 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
527 mutex_lock(&dev->struct_mutex);
528 dev_priv->mm.suspended = 0;
529
530 error = i915_gem_init_hw(dev);
531 mutex_unlock(&dev->struct_mutex);
532
533 if (HAS_PCH_SPLIT(dev))
534 ironlake_init_pch_refclk(dev);
535
536 drm_mode_config_reset(dev);
537 drm_irq_install(dev);
538
539 /* Resume the modeset for every activated CRTC */
540 drm_helper_resume_force_mode(dev);
541
542 if (IS_IRONLAKE_M(dev))
543 ironlake_enable_rc6(dev);
544 }
545
546 intel_opregion_init(dev);
547
548 dev_priv->modeset_on_lid = 0;
549
550 console_lock();
551 intel_fbdev_set_suspend(dev, 0);
552 console_unlock();
553 return error;
554 }
555
556 int i915_resume(struct drm_device *dev)
557 {
558 int ret;
559
560 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
561 return 0;
562
563 if (pci_enable_device(dev->pdev))
564 return -EIO;
565
566 pci_set_master(dev->pdev);
567
568 ret = i915_drm_thaw(dev);
569 if (ret)
570 return ret;
571
572 drm_kms_helper_poll_enable(dev);
573 return 0;
574 }
575
576 static int i8xx_do_reset(struct drm_device *dev, u8 flags)
577 {
578 struct drm_i915_private *dev_priv = dev->dev_private;
579
580 if (IS_I85X(dev))
581 return -ENODEV;
582
583 I915_WRITE(D_STATE, I915_READ(D_STATE) | DSTATE_GFX_RESET_I830);
584 POSTING_READ(D_STATE);
585
586 if (IS_I830(dev) || IS_845G(dev)) {
587 I915_WRITE(DEBUG_RESET_I830,
588 DEBUG_RESET_DISPLAY |
589 DEBUG_RESET_RENDER |
590 DEBUG_RESET_FULL);
591 POSTING_READ(DEBUG_RESET_I830);
592 msleep(1);
593
594 I915_WRITE(DEBUG_RESET_I830, 0);
595 POSTING_READ(DEBUG_RESET_I830);
596 }
597
598 msleep(1);
599
600 I915_WRITE(D_STATE, I915_READ(D_STATE) & ~DSTATE_GFX_RESET_I830);
601 POSTING_READ(D_STATE);
602
603 return 0;
604 }
605
606 static int i965_reset_complete(struct drm_device *dev)
607 {
608 u8 gdrst;
609 pci_read_config_byte(dev->pdev, I965_GDRST, &gdrst);
610 return gdrst & 0x1;
611 }
612
613 static int i965_do_reset(struct drm_device *dev, u8 flags)
614 {
615 u8 gdrst;
616
617 /*
618 * Set the domains we want to reset (GRDOM/bits 2 and 3) as
619 * well as the reset bit (GR/bit 0). Setting the GR bit
620 * triggers the reset; when done, the hardware will clear it.
621 */
622 pci_read_config_byte(dev->pdev, I965_GDRST, &gdrst);
623 pci_write_config_byte(dev->pdev, I965_GDRST, gdrst | flags | 0x1);
624
625 return wait_for(i965_reset_complete(dev), 500);
626 }
627
628 static int ironlake_do_reset(struct drm_device *dev, u8 flags)
629 {
630 struct drm_i915_private *dev_priv = dev->dev_private;
631 u32 gdrst = I915_READ(MCHBAR_MIRROR_BASE + ILK_GDSR);
632 I915_WRITE(MCHBAR_MIRROR_BASE + ILK_GDSR, gdrst | flags | 0x1);
633 return wait_for(I915_READ(MCHBAR_MIRROR_BASE + ILK_GDSR) & 0x1, 500);
634 }
635
636 static int gen6_do_reset(struct drm_device *dev, u8 flags)
637 {
638 struct drm_i915_private *dev_priv = dev->dev_private;
639 int ret;
640 unsigned long irqflags;
641
642 /* Hold gt_lock across reset to prevent any register access
643 * with forcewake not set correctly
644 */
645 spin_lock_irqsave(&dev_priv->gt_lock, irqflags);
646
647 /* Reset the chip */
648
649 /* GEN6_GDRST is not in the gt power well, no need to check
650 * for fifo space for the write or forcewake the chip for
651 * the read
652 */
653 I915_WRITE_NOTRACE(GEN6_GDRST, GEN6_GRDOM_FULL);
654
655 /* Spin waiting for the device to ack the reset request */
656 ret = wait_for((I915_READ_NOTRACE(GEN6_GDRST) & GEN6_GRDOM_FULL) == 0, 500);
657
658 /* If reset with a user forcewake, try to restore, otherwise turn it off */
659 if (dev_priv->forcewake_count)
660 dev_priv->display.force_wake_get(dev_priv);
661 else
662 dev_priv->display.force_wake_put(dev_priv);
663
664 /* Restore fifo count */
665 dev_priv->gt_fifo_count = I915_READ_NOTRACE(GT_FIFO_FREE_ENTRIES);
666
667 spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags);
668 return ret;
669 }
670
671 /**
672 * i915_reset - reset chip after a hang
673 * @dev: drm device to reset
674 * @flags: reset domains
675 *
676 * Reset the chip. Useful if a hang is detected. Returns zero on successful
677 * reset or otherwise an error code.
678 *
679 * Procedure is fairly simple:
680 * - reset the chip using the reset reg
681 * - re-init context state
682 * - re-init hardware status page
683 * - re-init ring buffer
684 * - re-init interrupt state
685 * - re-init display
686 */
687 int i915_reset(struct drm_device *dev, u8 flags)
688 {
689 drm_i915_private_t *dev_priv = dev->dev_private;
690 /*
691 * We really should only reset the display subsystem if we actually
692 * need to
693 */
694 bool need_display = true;
695 int ret;
696
697 if (!i915_try_reset)
698 return 0;
699
700 if (!mutex_trylock(&dev->struct_mutex))
701 return -EBUSY;
702
703 i915_gem_reset(dev);
704
705 ret = -ENODEV;
706 if (get_seconds() - dev_priv->last_gpu_reset < 5) {
707 DRM_ERROR("GPU hanging too fast, declaring wedged!\n");
708 } else switch (INTEL_INFO(dev)->gen) {
709 case 7:
710 case 6:
711 ret = gen6_do_reset(dev, flags);
712 break;
713 case 5:
714 ret = ironlake_do_reset(dev, flags);
715 break;
716 case 4:
717 ret = i965_do_reset(dev, flags);
718 break;
719 case 2:
720 ret = i8xx_do_reset(dev, flags);
721 break;
722 }
723 dev_priv->last_gpu_reset = get_seconds();
724 if (ret) {
725 DRM_ERROR("Failed to reset chip.\n");
726 mutex_unlock(&dev->struct_mutex);
727 return ret;
728 }
729
730 /* Ok, now get things going again... */
731
732 /*
733 * Everything depends on having the GTT running, so we need to start
734 * there. Fortunately we don't need to do this unless we reset the
735 * chip at a PCI level.
736 *
737 * Next we need to restore the context, but we don't use those
738 * yet either...
739 *
740 * Ring buffer needs to be re-initialized in the KMS case, or if X
741 * was running at the time of the reset (i.e. we weren't VT
742 * switched away).
743 */
744 if (drm_core_check_feature(dev, DRIVER_MODESET) ||
745 !dev_priv->mm.suspended) {
746 dev_priv->mm.suspended = 0;
747
748 i915_gem_init_swizzling(dev);
749
750 dev_priv->ring[RCS].init(&dev_priv->ring[RCS]);
751 if (HAS_BSD(dev))
752 dev_priv->ring[VCS].init(&dev_priv->ring[VCS]);
753 if (HAS_BLT(dev))
754 dev_priv->ring[BCS].init(&dev_priv->ring[BCS]);
755
756 i915_gem_init_ppgtt(dev);
757
758 mutex_unlock(&dev->struct_mutex);
759 drm_irq_uninstall(dev);
760 drm_mode_config_reset(dev);
761 drm_irq_install(dev);
762 mutex_lock(&dev->struct_mutex);
763 }
764
765 mutex_unlock(&dev->struct_mutex);
766
767 /*
768 * Perform a full modeset as on later generations, e.g. Ironlake, we may
769 * need to retrain the display link and cannot just restore the register
770 * values.
771 */
772 if (need_display) {
773 mutex_lock(&dev->mode_config.mutex);
774 drm_helper_resume_force_mode(dev);
775 mutex_unlock(&dev->mode_config.mutex);
776 }
777
778 return 0;
779 }
780
781
782 static int __devinit
783 i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
784 {
785 /* Only bind to function 0 of the device. Early generations
786 * used function 1 as a placeholder for multi-head. This causes
787 * us confusion instead, especially on the systems where both
788 * functions have the same PCI-ID!
789 */
790 if (PCI_FUNC(pdev->devfn))
791 return -ENODEV;
792
793 return drm_get_pci_dev(pdev, ent, &driver);
794 }
795
796 static void
797 i915_pci_remove(struct pci_dev *pdev)
798 {
799 struct drm_device *dev = pci_get_drvdata(pdev);
800
801 drm_put_dev(dev);
802 }
803
804 static int i915_pm_suspend(struct device *dev)
805 {
806 struct pci_dev *pdev = to_pci_dev(dev);
807 struct drm_device *drm_dev = pci_get_drvdata(pdev);
808 int error;
809
810 if (!drm_dev || !drm_dev->dev_private) {
811 dev_err(dev, "DRM not initialized, aborting suspend.\n");
812 return -ENODEV;
813 }
814
815 if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
816 return 0;
817
818 error = i915_drm_freeze(drm_dev);
819 if (error)
820 return error;
821
822 pci_disable_device(pdev);
823 pci_set_power_state(pdev, PCI_D3hot);
824
825 return 0;
826 }
827
828 static int i915_pm_resume(struct device *dev)
829 {
830 struct pci_dev *pdev = to_pci_dev(dev);
831 struct drm_device *drm_dev = pci_get_drvdata(pdev);
832
833 return i915_resume(drm_dev);
834 }
835
836 static int i915_pm_freeze(struct device *dev)
837 {
838 struct pci_dev *pdev = to_pci_dev(dev);
839 struct drm_device *drm_dev = pci_get_drvdata(pdev);
840
841 if (!drm_dev || !drm_dev->dev_private) {
842 dev_err(dev, "DRM not initialized, aborting suspend.\n");
843 return -ENODEV;
844 }
845
846 return i915_drm_freeze(drm_dev);
847 }
848
849 static int i915_pm_thaw(struct device *dev)
850 {
851 struct pci_dev *pdev = to_pci_dev(dev);
852 struct drm_device *drm_dev = pci_get_drvdata(pdev);
853
854 return i915_drm_thaw(drm_dev);
855 }
856
857 static int i915_pm_poweroff(struct device *dev)
858 {
859 struct pci_dev *pdev = to_pci_dev(dev);
860 struct drm_device *drm_dev = pci_get_drvdata(pdev);
861
862 return i915_drm_freeze(drm_dev);
863 }
864
865 static const struct dev_pm_ops i915_pm_ops = {
866 .suspend = i915_pm_suspend,
867 .resume = i915_pm_resume,
868 .freeze = i915_pm_freeze,
869 .thaw = i915_pm_thaw,
870 .poweroff = i915_pm_poweroff,
871 .restore = i915_pm_resume,
872 };
873
874 static struct vm_operations_struct i915_gem_vm_ops = {
875 .fault = i915_gem_fault,
876 .open = drm_gem_vm_open,
877 .close = drm_gem_vm_close,
878 };
879
880 static const struct file_operations i915_driver_fops = {
881 .owner = THIS_MODULE,
882 .open = drm_open,
883 .release = drm_release,
884 .unlocked_ioctl = drm_ioctl,
885 .mmap = drm_gem_mmap,
886 .poll = drm_poll,
887 .fasync = drm_fasync,
888 .read = drm_read,
889 #ifdef CONFIG_COMPAT
890 .compat_ioctl = i915_compat_ioctl,
891 #endif
892 .llseek = noop_llseek,
893 };
894
895 static struct drm_driver driver = {
896 /* Don't use MTRRs here; the Xserver or userspace app should
897 * deal with them for Intel hardware.
898 */
899 .driver_features =
900 DRIVER_USE_AGP | DRIVER_REQUIRE_AGP | /* DRIVER_USE_MTRR |*/
901 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM,
902 .load = i915_driver_load,
903 .unload = i915_driver_unload,
904 .open = i915_driver_open,
905 .lastclose = i915_driver_lastclose,
906 .preclose = i915_driver_preclose,
907 .postclose = i915_driver_postclose,
908
909 /* Used in place of i915_pm_ops for non-DRIVER_MODESET */
910 .suspend = i915_suspend,
911 .resume = i915_resume,
912
913 .device_is_agp = i915_driver_device_is_agp,
914 .reclaim_buffers = drm_core_reclaim_buffers,
915 .master_create = i915_master_create,
916 .master_destroy = i915_master_destroy,
917 #if defined(CONFIG_DEBUG_FS)
918 .debugfs_init = i915_debugfs_init,
919 .debugfs_cleanup = i915_debugfs_cleanup,
920 #endif
921 .gem_init_object = i915_gem_init_object,
922 .gem_free_object = i915_gem_free_object,
923 .gem_vm_ops = &i915_gem_vm_ops,
924 .dumb_create = i915_gem_dumb_create,
925 .dumb_map_offset = i915_gem_mmap_gtt,
926 .dumb_destroy = i915_gem_dumb_destroy,
927 .ioctls = i915_ioctls,
928 .fops = &i915_driver_fops,
929 .name = DRIVER_NAME,
930 .desc = DRIVER_DESC,
931 .date = DRIVER_DATE,
932 .major = DRIVER_MAJOR,
933 .minor = DRIVER_MINOR,
934 .patchlevel = DRIVER_PATCHLEVEL,
935 };
936
937 static struct pci_driver i915_pci_driver = {
938 .name = DRIVER_NAME,
939 .id_table = pciidlist,
940 .probe = i915_pci_probe,
941 .remove = i915_pci_remove,
942 .driver.pm = &i915_pm_ops,
943 };
944
945 static int __init i915_init(void)
946 {
947 if (!intel_agp_enabled) {
948 DRM_ERROR("drm/i915 can't work without intel_agp module!\n");
949 return -ENODEV;
950 }
951
952 driver.num_ioctls = i915_max_ioctl;
953
954 /*
955 * If CONFIG_DRM_I915_KMS is set, default to KMS unless
956 * explicitly disabled with the module pararmeter.
957 *
958 * Otherwise, just follow the parameter (defaulting to off).
959 *
960 * Allow optional vga_text_mode_force boot option to override
961 * the default behavior.
962 */
963 #if defined(CONFIG_DRM_I915_KMS)
964 if (i915_modeset != 0)
965 driver.driver_features |= DRIVER_MODESET;
966 #endif
967 if (i915_modeset == 1)
968 driver.driver_features |= DRIVER_MODESET;
969
970 #ifdef CONFIG_VGA_CONSOLE
971 if (vgacon_text_force() && i915_modeset == -1)
972 driver.driver_features &= ~DRIVER_MODESET;
973 #endif
974
975 if (!(driver.driver_features & DRIVER_MODESET))
976 driver.get_vblank_timestamp = NULL;
977
978 return drm_pci_init(&driver, &i915_pci_driver);
979 }
980
981 static void __exit i915_exit(void)
982 {
983 drm_pci_exit(&driver, &i915_pci_driver);
984 }
985
986 module_init(i915_init);
987 module_exit(i915_exit);
988
989 MODULE_AUTHOR(DRIVER_AUTHOR);
990 MODULE_DESCRIPTION(DRIVER_DESC);
991 MODULE_LICENSE("GPL and additional rights");
992
993 #define __i915_read(x, y) \
994 u##x i915_read##x(struct drm_i915_private *dev_priv, u32 reg) { \
995 u##x val = 0; \
996 if (NEEDS_FORCE_WAKE((dev_priv), (reg))) { \
997 unsigned long irqflags; \
998 spin_lock_irqsave(&dev_priv->gt_lock, irqflags); \
999 if (dev_priv->forcewake_count == 0) \
1000 dev_priv->display.force_wake_get(dev_priv); \
1001 val = read##y(dev_priv->regs + reg); \
1002 if (dev_priv->forcewake_count == 0) \
1003 dev_priv->display.force_wake_put(dev_priv); \
1004 spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags); \
1005 } else { \
1006 val = read##y(dev_priv->regs + reg); \
1007 } \
1008 trace_i915_reg_rw(false, reg, val, sizeof(val)); \
1009 return val; \
1010 }
1011
1012 __i915_read(8, b)
1013 __i915_read(16, w)
1014 __i915_read(32, l)
1015 __i915_read(64, q)
1016 #undef __i915_read
1017
1018 #define __i915_write(x, y) \
1019 void i915_write##x(struct drm_i915_private *dev_priv, u32 reg, u##x val) { \
1020 u32 __fifo_ret = 0; \
1021 trace_i915_reg_rw(true, reg, val, sizeof(val)); \
1022 if (NEEDS_FORCE_WAKE((dev_priv), (reg))) { \
1023 __fifo_ret = __gen6_gt_wait_for_fifo(dev_priv); \
1024 } \
1025 write##y(val, dev_priv->regs + reg); \
1026 if (unlikely(__fifo_ret)) { \
1027 gen6_gt_check_fifodbg(dev_priv); \
1028 } \
1029 }
1030 __i915_write(8, b)
1031 __i915_write(16, w)
1032 __i915_write(32, l)
1033 __i915_write(64, q)
1034 #undef __i915_write
This page took 0.127248 seconds and 4 git commands to generate.