drm/i915: add PantherPoint PCH ID
[linux-2.6-block.git] / drivers / gpu / drm / i915 / i915_drv.c
CommitLineData
1da177e4
LT
1/* i915_drv.c -- i830,i845,i855,i865,i915 driver -*- linux-c -*-
2 */
0d6aa60b 3/*
bc54fd1a 4 *
1da177e4
LT
5 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
bc54fd1a
DA
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 *
0d6aa60b 28 */
1da177e4 29
5669fcac 30#include <linux/device.h>
1da177e4
LT
31#include "drmP.h"
32#include "drm.h"
33#include "i915_drm.h"
34#include "i915_drv.h"
f49f0586 35#include "intel_drv.h"
1da177e4 36
79e53945 37#include <linux/console.h>
354ff967 38#include "drm_crtc_helper.h"
79e53945 39
d6073d77 40static int i915_modeset = -1;
79e53945
JB
41module_param_named(modeset, i915_modeset, int, 0400);
42
43unsigned int i915_fbpercrtc = 0;
44module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400);
1da177e4 45
fca87409
CW
46int i915_panel_ignore_lid = 0;
47module_param_named(panel_ignore_lid, i915_panel_ignore_lid, int, 0600);
48
652c393a 49unsigned int i915_powersave = 1;
0aa99277 50module_param_named(powersave, i915_powersave, int, 0600);
652c393a 51
47ae63e0 52unsigned int i915_semaphores = 1;
a1656b90
CW
53module_param_named(semaphores, i915_semaphores, int, 0600);
54
ac668088
CW
55unsigned int i915_enable_rc6 = 0;
56module_param_named(i915_enable_rc6, i915_enable_rc6, int, 0600);
57
33814341
JB
58unsigned int i915_lvds_downclock = 0;
59module_param_named(lvds_downclock, i915_lvds_downclock, int, 0400);
60
a7615030
CW
61unsigned int i915_panel_use_ssc = 1;
62module_param_named(lvds_use_ssc, i915_panel_use_ssc, int, 0600);
63
5a1e5b6c
CW
64int i915_vbt_sdvo_panel_type = -1;
65module_param_named(vbt_sdvo_panel_type, i915_vbt_sdvo_panel_type, int, 0600);
66
311bd68e 67static bool i915_try_reset = true;
d78cb50b
CW
68module_param_named(reset, i915_try_reset, bool, 0600);
69
112b715e 70static struct drm_driver driver;
1f7a6e37 71extern int intel_agp_enabled;
112b715e 72
cfdf1fa2 73#define INTEL_VGA_DEVICE(id, info) { \
49ae35f2 74 .class = PCI_CLASS_DISPLAY_VGA << 8, \
934f992c 75 .class_mask = 0xff0000, \
49ae35f2
KH
76 .vendor = 0x8086, \
77 .device = id, \
78 .subvendor = PCI_ANY_ID, \
79 .subdevice = PCI_ANY_ID, \
cfdf1fa2
KH
80 .driver_data = (unsigned long) info }
81
9a7e8492 82static const struct intel_device_info intel_i830_info = {
a6c45cf0 83 .gen = 2, .is_mobile = 1, .cursor_needs_physical = 1,
31578148 84 .has_overlay = 1, .overlay_needs_physical = 1,
cfdf1fa2
KH
85};
86
9a7e8492 87static const struct intel_device_info intel_845g_info = {
a6c45cf0 88 .gen = 2,
31578148 89 .has_overlay = 1, .overlay_needs_physical = 1,
cfdf1fa2
KH
90};
91
9a7e8492 92static const struct intel_device_info intel_i85x_info = {
a6c45cf0 93 .gen = 2, .is_i85x = 1, .is_mobile = 1,
5ce8ba7c 94 .cursor_needs_physical = 1,
31578148 95 .has_overlay = 1, .overlay_needs_physical = 1,
cfdf1fa2
KH
96};
97
9a7e8492 98static const struct intel_device_info intel_i865g_info = {
a6c45cf0 99 .gen = 2,
31578148 100 .has_overlay = 1, .overlay_needs_physical = 1,
cfdf1fa2
KH
101};
102
9a7e8492 103static const struct intel_device_info intel_i915g_info = {
a6c45cf0 104 .gen = 3, .is_i915g = 1, .cursor_needs_physical = 1,
31578148 105 .has_overlay = 1, .overlay_needs_physical = 1,
cfdf1fa2 106};
9a7e8492 107static const struct intel_device_info intel_i915gm_info = {
a6c45cf0 108 .gen = 3, .is_mobile = 1,
b295d1b6 109 .cursor_needs_physical = 1,
31578148 110 .has_overlay = 1, .overlay_needs_physical = 1,
a6c45cf0 111 .supports_tv = 1,
cfdf1fa2 112};
9a7e8492 113static const struct intel_device_info intel_i945g_info = {
a6c45cf0 114 .gen = 3, .has_hotplug = 1, .cursor_needs_physical = 1,
31578148 115 .has_overlay = 1, .overlay_needs_physical = 1,
cfdf1fa2 116};
9a7e8492 117static const struct intel_device_info intel_i945gm_info = {
a6c45cf0 118 .gen = 3, .is_i945gm = 1, .is_mobile = 1,
b295d1b6 119 .has_hotplug = 1, .cursor_needs_physical = 1,
31578148 120 .has_overlay = 1, .overlay_needs_physical = 1,
a6c45cf0 121 .supports_tv = 1,
cfdf1fa2
KH
122};
123
9a7e8492 124static const struct intel_device_info intel_i965g_info = {
a6c45cf0 125 .gen = 4, .is_broadwater = 1,
c96c3a8c 126 .has_hotplug = 1,
31578148 127 .has_overlay = 1,
cfdf1fa2
KH
128};
129
9a7e8492 130static const struct intel_device_info intel_i965gm_info = {
a6c45cf0 131 .gen = 4, .is_crestline = 1,
e3c4e5dd 132 .is_mobile = 1, .has_fbc = 1, .has_hotplug = 1,
31578148 133 .has_overlay = 1,
a6c45cf0 134 .supports_tv = 1,
cfdf1fa2
KH
135};
136
9a7e8492 137static const struct intel_device_info intel_g33_info = {
a6c45cf0 138 .gen = 3, .is_g33 = 1,
c96c3a8c 139 .need_gfx_hws = 1, .has_hotplug = 1,
31578148 140 .has_overlay = 1,
cfdf1fa2
KH
141};
142
9a7e8492 143static const struct intel_device_info intel_g45_info = {
a6c45cf0 144 .gen = 4, .is_g4x = 1, .need_gfx_hws = 1,
c96c3a8c 145 .has_pipe_cxsr = 1, .has_hotplug = 1,
92f49d9c 146 .has_bsd_ring = 1,
cfdf1fa2
KH
147};
148
9a7e8492 149static const struct intel_device_info intel_gm45_info = {
a6c45cf0 150 .gen = 4, .is_g4x = 1,
e3c4e5dd 151 .is_mobile = 1, .need_gfx_hws = 1, .has_fbc = 1,
c96c3a8c 152 .has_pipe_cxsr = 1, .has_hotplug = 1,
a6c45cf0 153 .supports_tv = 1,
92f49d9c 154 .has_bsd_ring = 1,
cfdf1fa2
KH
155};
156
9a7e8492 157static const struct intel_device_info intel_pineview_info = {
a6c45cf0 158 .gen = 3, .is_g33 = 1, .is_pineview = 1, .is_mobile = 1,
c96c3a8c 159 .need_gfx_hws = 1, .has_hotplug = 1,
31578148 160 .has_overlay = 1,
cfdf1fa2
KH
161};
162
9a7e8492 163static const struct intel_device_info intel_ironlake_d_info = {
f00a3ddf 164 .gen = 5,
c96c3a8c 165 .need_gfx_hws = 1, .has_pipe_cxsr = 1, .has_hotplug = 1,
92f49d9c 166 .has_bsd_ring = 1,
cfdf1fa2
KH
167};
168
9a7e8492 169static const struct intel_device_info intel_ironlake_m_info = {
f00a3ddf 170 .gen = 5, .is_mobile = 1,
e3c4e5dd 171 .need_gfx_hws = 1, .has_hotplug = 1,
16c59ef3 172 .has_fbc = 0, /* disabled due to buggy hardware */
92f49d9c 173 .has_bsd_ring = 1,
cfdf1fa2
KH
174};
175
9a7e8492 176static const struct intel_device_info intel_sandybridge_d_info = {
a6c45cf0 177 .gen = 6,
c96c3a8c 178 .need_gfx_hws = 1, .has_hotplug = 1,
881f47b6 179 .has_bsd_ring = 1,
549f7365 180 .has_blt_ring = 1,
f6e450a6
EA
181};
182
9a7e8492 183static const struct intel_device_info intel_sandybridge_m_info = {
a6c45cf0 184 .gen = 6, .is_mobile = 1,
c96c3a8c 185 .need_gfx_hws = 1, .has_hotplug = 1,
9c04f015 186 .has_fbc = 1,
881f47b6 187 .has_bsd_ring = 1,
549f7365 188 .has_blt_ring = 1,
a13e4093
EA
189};
190
6103da0d
CW
191static const struct pci_device_id pciidlist[] = { /* aka */
192 INTEL_VGA_DEVICE(0x3577, &intel_i830_info), /* I830_M */
193 INTEL_VGA_DEVICE(0x2562, &intel_845g_info), /* 845_G */
194 INTEL_VGA_DEVICE(0x3582, &intel_i85x_info), /* I855_GM */
5ce8ba7c 195 INTEL_VGA_DEVICE(0x358e, &intel_i85x_info),
6103da0d
CW
196 INTEL_VGA_DEVICE(0x2572, &intel_i865g_info), /* I865_G */
197 INTEL_VGA_DEVICE(0x2582, &intel_i915g_info), /* I915_G */
198 INTEL_VGA_DEVICE(0x258a, &intel_i915g_info), /* E7221_G */
199 INTEL_VGA_DEVICE(0x2592, &intel_i915gm_info), /* I915_GM */
200 INTEL_VGA_DEVICE(0x2772, &intel_i945g_info), /* I945_G */
201 INTEL_VGA_DEVICE(0x27a2, &intel_i945gm_info), /* I945_GM */
202 INTEL_VGA_DEVICE(0x27ae, &intel_i945gm_info), /* I945_GME */
203 INTEL_VGA_DEVICE(0x2972, &intel_i965g_info), /* I946_GZ */
204 INTEL_VGA_DEVICE(0x2982, &intel_i965g_info), /* G35_G */
205 INTEL_VGA_DEVICE(0x2992, &intel_i965g_info), /* I965_Q */
206 INTEL_VGA_DEVICE(0x29a2, &intel_i965g_info), /* I965_G */
207 INTEL_VGA_DEVICE(0x29b2, &intel_g33_info), /* Q35_G */
208 INTEL_VGA_DEVICE(0x29c2, &intel_g33_info), /* G33_G */
209 INTEL_VGA_DEVICE(0x29d2, &intel_g33_info), /* Q33_G */
210 INTEL_VGA_DEVICE(0x2a02, &intel_i965gm_info), /* I965_GM */
211 INTEL_VGA_DEVICE(0x2a12, &intel_i965gm_info), /* I965_GME */
212 INTEL_VGA_DEVICE(0x2a42, &intel_gm45_info), /* GM45_G */
213 INTEL_VGA_DEVICE(0x2e02, &intel_g45_info), /* IGD_E_G */
214 INTEL_VGA_DEVICE(0x2e12, &intel_g45_info), /* Q45_G */
215 INTEL_VGA_DEVICE(0x2e22, &intel_g45_info), /* G45_G */
216 INTEL_VGA_DEVICE(0x2e32, &intel_g45_info), /* G41_G */
217 INTEL_VGA_DEVICE(0x2e42, &intel_g45_info), /* B43_G */
41a51428 218 INTEL_VGA_DEVICE(0x2e92, &intel_g45_info), /* B43_G.1 */
cfdf1fa2
KH
219 INTEL_VGA_DEVICE(0xa001, &intel_pineview_info),
220 INTEL_VGA_DEVICE(0xa011, &intel_pineview_info),
221 INTEL_VGA_DEVICE(0x0042, &intel_ironlake_d_info),
222 INTEL_VGA_DEVICE(0x0046, &intel_ironlake_m_info),
f6e450a6 223 INTEL_VGA_DEVICE(0x0102, &intel_sandybridge_d_info),
85540480
ZW
224 INTEL_VGA_DEVICE(0x0112, &intel_sandybridge_d_info),
225 INTEL_VGA_DEVICE(0x0122, &intel_sandybridge_d_info),
a13e4093 226 INTEL_VGA_DEVICE(0x0106, &intel_sandybridge_m_info),
85540480 227 INTEL_VGA_DEVICE(0x0116, &intel_sandybridge_m_info),
4fefe435 228 INTEL_VGA_DEVICE(0x0126, &intel_sandybridge_m_info),
85540480 229 INTEL_VGA_DEVICE(0x010A, &intel_sandybridge_d_info),
49ae35f2 230 {0, 0, 0}
1da177e4
LT
231};
232
79e53945
JB
233#if defined(CONFIG_DRM_I915_KMS)
234MODULE_DEVICE_TABLE(pci, pciidlist);
235#endif
236
3bad0781
ZW
237#define INTEL_PCH_DEVICE_ID_MASK 0xff00
238#define INTEL_PCH_CPT_DEVICE_ID_TYPE 0x1c00
c792513b 239#define INTEL_PCH_PPT_DEVICE_ID_TYPE 0x1e00
3bad0781
ZW
240
241void intel_detect_pch (struct drm_device *dev)
242{
243 struct drm_i915_private *dev_priv = dev->dev_private;
244 struct pci_dev *pch;
245
246 /*
247 * The reason to probe ISA bridge instead of Dev31:Fun0 is to
248 * make graphics device passthrough work easy for VMM, that only
249 * need to expose ISA bridge to let driver know the real hardware
250 * underneath. This is a requirement from virtualization team.
251 */
252 pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
253 if (pch) {
254 if (pch->vendor == PCI_VENDOR_ID_INTEL) {
255 int id;
256 id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
257
258 if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
259 dev_priv->pch_type = PCH_CPT;
260 DRM_DEBUG_KMS("Found CougarPoint PCH\n");
c792513b
JB
261 } else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
262 /* PantherPoint is CPT compatible */
263 dev_priv->pch_type = PCH_CPT;
264 DRM_DEBUG_KMS("Found PatherPoint PCH\n");
3bad0781
ZW
265 }
266 }
267 pci_dev_put(pch);
268 }
269}
270
fcca7926 271static void __gen6_gt_force_wake_get(struct drm_i915_private *dev_priv)
eb43f4af
CW
272{
273 int count;
274
275 count = 0;
276 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
277 udelay(10);
278
279 I915_WRITE_NOTRACE(FORCEWAKE, 1);
280 POSTING_READ(FORCEWAKE);
281
282 count = 0;
283 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1) == 0)
284 udelay(10);
285}
286
fcca7926
BW
287/*
288 * Generally this is called implicitly by the register read function. However,
289 * if some sequence requires the GT to not power down then this function should
290 * be called at the beginning of the sequence followed by a call to
291 * gen6_gt_force_wake_put() at the end of the sequence.
292 */
293void gen6_gt_force_wake_get(struct drm_i915_private *dev_priv)
294{
295 WARN_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex));
296
297 /* Forcewake is atomic in case we get in here without the lock */
298 if (atomic_add_return(1, &dev_priv->forcewake_count) == 1)
299 __gen6_gt_force_wake_get(dev_priv);
300}
301
302static void __gen6_gt_force_wake_put(struct drm_i915_private *dev_priv)
eb43f4af
CW
303{
304 I915_WRITE_NOTRACE(FORCEWAKE, 0);
305 POSTING_READ(FORCEWAKE);
306}
307
fcca7926
BW
308/*
309 * see gen6_gt_force_wake_get()
310 */
311void gen6_gt_force_wake_put(struct drm_i915_private *dev_priv)
312{
313 WARN_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex));
314
315 if (atomic_dec_and_test(&dev_priv->forcewake_count))
316 __gen6_gt_force_wake_put(dev_priv);
317}
318
91355834
CW
319void __gen6_gt_wait_for_fifo(struct drm_i915_private *dev_priv)
320{
321 int loop = 500;
322 u32 fifo = I915_READ_NOTRACE(GT_FIFO_FREE_ENTRIES);
323 while (fifo < 20 && loop--) {
324 udelay(10);
325 fifo = I915_READ_NOTRACE(GT_FIFO_FREE_ENTRIES);
326 }
327}
328
84b79f8d 329static int i915_drm_freeze(struct drm_device *dev)
ba8bbcf6 330{
61caf87c
RW
331 struct drm_i915_private *dev_priv = dev->dev_private;
332
5bcf719b
DA
333 drm_kms_helper_poll_disable(dev);
334
ba8bbcf6 335 pci_save_state(dev->pdev);
ba8bbcf6 336
5669fcac 337 /* If KMS is active, we do the leavevt stuff here */
226485e9 338 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
84b79f8d
RW
339 int error = i915_gem_idle(dev);
340 if (error) {
226485e9 341 dev_err(&dev->pdev->dev,
84b79f8d
RW
342 "GEM idle failed, resume might fail\n");
343 return error;
344 }
226485e9 345 drm_irq_uninstall(dev);
5669fcac
JB
346 }
347
9e06dd39
JB
348 i915_save_state(dev);
349
44834a67 350 intel_opregion_fini(dev);
8ee1c3db 351
84b79f8d
RW
352 /* Modeset on resume, not lid events */
353 dev_priv->modeset_on_lid = 0;
61caf87c
RW
354
355 return 0;
84b79f8d
RW
356}
357
6a9ee8af 358int i915_suspend(struct drm_device *dev, pm_message_t state)
84b79f8d
RW
359{
360 int error;
361
362 if (!dev || !dev->dev_private) {
363 DRM_ERROR("dev: %p\n", dev);
364 DRM_ERROR("DRM not initialized, aborting suspend.\n");
365 return -ENODEV;
366 }
367
368 if (state.event == PM_EVENT_PRETHAW)
369 return 0;
370
5bcf719b
DA
371
372 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
373 return 0;
6eecba33 374
84b79f8d
RW
375 error = i915_drm_freeze(dev);
376 if (error)
377 return error;
378
b932ccb5
DA
379 if (state.event == PM_EVENT_SUSPEND) {
380 /* Shut down the device */
381 pci_disable_device(dev->pdev);
382 pci_set_power_state(dev->pdev, PCI_D3hot);
383 }
ba8bbcf6
JB
384
385 return 0;
386}
387
84b79f8d 388static int i915_drm_thaw(struct drm_device *dev)
ba8bbcf6 389{
5669fcac 390 struct drm_i915_private *dev_priv = dev->dev_private;
84b79f8d 391 int error = 0;
8ee1c3db 392
d1c3b177
CW
393 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
394 mutex_lock(&dev->struct_mutex);
395 i915_gem_restore_gtt_mappings(dev);
396 mutex_unlock(&dev->struct_mutex);
397 }
398
61caf87c 399 i915_restore_state(dev);
44834a67 400 intel_opregion_setup(dev);
61caf87c 401
5669fcac
JB
402 /* KMS EnterVT equivalent */
403 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
404 mutex_lock(&dev->struct_mutex);
405 dev_priv->mm.suspended = 0;
406
84b79f8d 407 error = i915_gem_init_ringbuffer(dev);
5669fcac 408 mutex_unlock(&dev->struct_mutex);
226485e9 409
500f7147 410 drm_mode_config_reset(dev);
226485e9 411 drm_irq_install(dev);
84b79f8d 412
354ff967
ZY
413 /* Resume the modeset for every activated CRTC */
414 drm_helper_resume_force_mode(dev);
5669fcac 415
ac668088 416 if (IS_IRONLAKE_M(dev))
d5bb081b
JB
417 ironlake_enable_rc6(dev);
418 }
1daed3fb 419
44834a67
CW
420 intel_opregion_init(dev);
421
c9354c85 422 dev_priv->modeset_on_lid = 0;
06891e27 423
84b79f8d
RW
424 return error;
425}
426
6a9ee8af 427int i915_resume(struct drm_device *dev)
84b79f8d 428{
6eecba33
CW
429 int ret;
430
5bcf719b
DA
431 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
432 return 0;
433
84b79f8d
RW
434 if (pci_enable_device(dev->pdev))
435 return -EIO;
436
437 pci_set_master(dev->pdev);
438
6eecba33
CW
439 ret = i915_drm_thaw(dev);
440 if (ret)
441 return ret;
442
443 drm_kms_helper_poll_enable(dev);
444 return 0;
ba8bbcf6
JB
445}
446
dc96e9b8
CW
447static int i8xx_do_reset(struct drm_device *dev, u8 flags)
448{
449 struct drm_i915_private *dev_priv = dev->dev_private;
450
451 if (IS_I85X(dev))
452 return -ENODEV;
453
454 I915_WRITE(D_STATE, I915_READ(D_STATE) | DSTATE_GFX_RESET_I830);
455 POSTING_READ(D_STATE);
456
457 if (IS_I830(dev) || IS_845G(dev)) {
458 I915_WRITE(DEBUG_RESET_I830,
459 DEBUG_RESET_DISPLAY |
460 DEBUG_RESET_RENDER |
461 DEBUG_RESET_FULL);
462 POSTING_READ(DEBUG_RESET_I830);
463 msleep(1);
464
465 I915_WRITE(DEBUG_RESET_I830, 0);
466 POSTING_READ(DEBUG_RESET_I830);
467 }
468
469 msleep(1);
470
471 I915_WRITE(D_STATE, I915_READ(D_STATE) & ~DSTATE_GFX_RESET_I830);
472 POSTING_READ(D_STATE);
473
474 return 0;
475}
476
f49f0586
KG
477static int i965_reset_complete(struct drm_device *dev)
478{
479 u8 gdrst;
eeccdcac 480 pci_read_config_byte(dev->pdev, I965_GDRST, &gdrst);
f49f0586
KG
481 return gdrst & 0x1;
482}
483
0573ed4a
KG
484static int i965_do_reset(struct drm_device *dev, u8 flags)
485{
486 u8 gdrst;
487
ae681d96
CW
488 /*
489 * Set the domains we want to reset (GRDOM/bits 2 and 3) as
490 * well as the reset bit (GR/bit 0). Setting the GR bit
491 * triggers the reset; when done, the hardware will clear it.
492 */
0573ed4a
KG
493 pci_read_config_byte(dev->pdev, I965_GDRST, &gdrst);
494 pci_write_config_byte(dev->pdev, I965_GDRST, gdrst | flags | 0x1);
495
496 return wait_for(i965_reset_complete(dev), 500);
497}
498
499static int ironlake_do_reset(struct drm_device *dev, u8 flags)
500{
501 struct drm_i915_private *dev_priv = dev->dev_private;
502 u32 gdrst = I915_READ(MCHBAR_MIRROR_BASE + ILK_GDSR);
503 I915_WRITE(MCHBAR_MIRROR_BASE + ILK_GDSR, gdrst | flags | 0x1);
504 return wait_for(I915_READ(MCHBAR_MIRROR_BASE + ILK_GDSR) & 0x1, 500);
ba8bbcf6
JB
505}
506
cff458c2
EA
507static int gen6_do_reset(struct drm_device *dev, u8 flags)
508{
509 struct drm_i915_private *dev_priv = dev->dev_private;
510
511 I915_WRITE(GEN6_GDRST, GEN6_GRDOM_FULL);
512 return wait_for((I915_READ(GEN6_GDRST) & GEN6_GRDOM_FULL) == 0, 500);
513}
514
11ed50ec
BG
515/**
516 * i965_reset - reset chip after a hang
517 * @dev: drm device to reset
518 * @flags: reset domains
519 *
520 * Reset the chip. Useful if a hang is detected. Returns zero on successful
521 * reset or otherwise an error code.
522 *
523 * Procedure is fairly simple:
524 * - reset the chip using the reset reg
525 * - re-init context state
526 * - re-init hardware status page
527 * - re-init ring buffer
528 * - re-init interrupt state
529 * - re-init display
530 */
f803aa55 531int i915_reset(struct drm_device *dev, u8 flags)
11ed50ec
BG
532{
533 drm_i915_private_t *dev_priv = dev->dev_private;
11ed50ec
BG
534 /*
535 * We really should only reset the display subsystem if we actually
536 * need to
537 */
538 bool need_display = true;
0573ed4a 539 int ret;
11ed50ec 540
d78cb50b
CW
541 if (!i915_try_reset)
542 return 0;
543
340479aa
CW
544 if (!mutex_trylock(&dev->struct_mutex))
545 return -EBUSY;
11ed50ec 546
069efc1d 547 i915_gem_reset(dev);
77f01230 548
f803aa55 549 ret = -ENODEV;
ae681d96
CW
550 if (get_seconds() - dev_priv->last_gpu_reset < 5) {
551 DRM_ERROR("GPU hanging too fast, declaring wedged!\n");
552 } else switch (INTEL_INFO(dev)->gen) {
cff458c2
EA
553 case 6:
554 ret = gen6_do_reset(dev, flags);
555 break;
f803aa55 556 case 5:
0573ed4a 557 ret = ironlake_do_reset(dev, flags);
f803aa55
CW
558 break;
559 case 4:
0573ed4a 560 ret = i965_do_reset(dev, flags);
f803aa55 561 break;
dc96e9b8
CW
562 case 2:
563 ret = i8xx_do_reset(dev, flags);
564 break;
f803aa55 565 }
ae681d96 566 dev_priv->last_gpu_reset = get_seconds();
0573ed4a 567 if (ret) {
f803aa55 568 DRM_ERROR("Failed to reset chip.\n");
f953c935 569 mutex_unlock(&dev->struct_mutex);
f803aa55 570 return ret;
11ed50ec
BG
571 }
572
573 /* Ok, now get things going again... */
574
575 /*
576 * Everything depends on having the GTT running, so we need to start
577 * there. Fortunately we don't need to do this unless we reset the
578 * chip at a PCI level.
579 *
580 * Next we need to restore the context, but we don't use those
581 * yet either...
582 *
583 * Ring buffer needs to be re-initialized in the KMS case, or if X
584 * was running at the time of the reset (i.e. we weren't VT
585 * switched away).
586 */
587 if (drm_core_check_feature(dev, DRIVER_MODESET) ||
8187a2b7 588 !dev_priv->mm.suspended) {
11ed50ec 589 dev_priv->mm.suspended = 0;
75a6898f 590
1ec14ad3 591 dev_priv->ring[RCS].init(&dev_priv->ring[RCS]);
75a6898f 592 if (HAS_BSD(dev))
1ec14ad3 593 dev_priv->ring[VCS].init(&dev_priv->ring[VCS]);
75a6898f 594 if (HAS_BLT(dev))
1ec14ad3 595 dev_priv->ring[BCS].init(&dev_priv->ring[BCS]);
75a6898f 596
11ed50ec
BG
597 mutex_unlock(&dev->struct_mutex);
598 drm_irq_uninstall(dev);
500f7147 599 drm_mode_config_reset(dev);
11ed50ec
BG
600 drm_irq_install(dev);
601 mutex_lock(&dev->struct_mutex);
602 }
603
9fd98141
CW
604 mutex_unlock(&dev->struct_mutex);
605
11ed50ec 606 /*
9fd98141
CW
607 * Perform a full modeset as on later generations, e.g. Ironlake, we may
608 * need to retrain the display link and cannot just restore the register
609 * values.
11ed50ec 610 */
9fd98141
CW
611 if (need_display) {
612 mutex_lock(&dev->mode_config.mutex);
613 drm_helper_resume_force_mode(dev);
614 mutex_unlock(&dev->mode_config.mutex);
615 }
11ed50ec 616
11ed50ec
BG
617 return 0;
618}
619
620
112b715e
KH
621static int __devinit
622i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
623{
5fe49d86
CW
624 /* Only bind to function 0 of the device. Early generations
625 * used function 1 as a placeholder for multi-head. This causes
626 * us confusion instead, especially on the systems where both
627 * functions have the same PCI-ID!
628 */
629 if (PCI_FUNC(pdev->devfn))
630 return -ENODEV;
631
dcdb1674 632 return drm_get_pci_dev(pdev, ent, &driver);
112b715e
KH
633}
634
635static void
636i915_pci_remove(struct pci_dev *pdev)
637{
638 struct drm_device *dev = pci_get_drvdata(pdev);
639
640 drm_put_dev(dev);
641}
642
84b79f8d 643static int i915_pm_suspend(struct device *dev)
112b715e 644{
84b79f8d
RW
645 struct pci_dev *pdev = to_pci_dev(dev);
646 struct drm_device *drm_dev = pci_get_drvdata(pdev);
647 int error;
112b715e 648
84b79f8d
RW
649 if (!drm_dev || !drm_dev->dev_private) {
650 dev_err(dev, "DRM not initialized, aborting suspend.\n");
651 return -ENODEV;
652 }
112b715e 653
5bcf719b
DA
654 if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
655 return 0;
656
84b79f8d
RW
657 error = i915_drm_freeze(drm_dev);
658 if (error)
659 return error;
112b715e 660
84b79f8d
RW
661 pci_disable_device(pdev);
662 pci_set_power_state(pdev, PCI_D3hot);
cbda12d7 663
84b79f8d 664 return 0;
cbda12d7
ZW
665}
666
84b79f8d 667static int i915_pm_resume(struct device *dev)
cbda12d7 668{
84b79f8d
RW
669 struct pci_dev *pdev = to_pci_dev(dev);
670 struct drm_device *drm_dev = pci_get_drvdata(pdev);
671
672 return i915_resume(drm_dev);
cbda12d7
ZW
673}
674
84b79f8d 675static int i915_pm_freeze(struct device *dev)
cbda12d7 676{
84b79f8d
RW
677 struct pci_dev *pdev = to_pci_dev(dev);
678 struct drm_device *drm_dev = pci_get_drvdata(pdev);
679
680 if (!drm_dev || !drm_dev->dev_private) {
681 dev_err(dev, "DRM not initialized, aborting suspend.\n");
682 return -ENODEV;
683 }
684
685 return i915_drm_freeze(drm_dev);
cbda12d7
ZW
686}
687
84b79f8d 688static int i915_pm_thaw(struct device *dev)
cbda12d7 689{
84b79f8d
RW
690 struct pci_dev *pdev = to_pci_dev(dev);
691 struct drm_device *drm_dev = pci_get_drvdata(pdev);
692
693 return i915_drm_thaw(drm_dev);
cbda12d7
ZW
694}
695
84b79f8d 696static int i915_pm_poweroff(struct device *dev)
cbda12d7 697{
84b79f8d
RW
698 struct pci_dev *pdev = to_pci_dev(dev);
699 struct drm_device *drm_dev = pci_get_drvdata(pdev);
84b79f8d 700
61caf87c 701 return i915_drm_freeze(drm_dev);
cbda12d7
ZW
702}
703
b4b78d12 704static const struct dev_pm_ops i915_pm_ops = {
cbda12d7
ZW
705 .suspend = i915_pm_suspend,
706 .resume = i915_pm_resume,
707 .freeze = i915_pm_freeze,
708 .thaw = i915_pm_thaw,
709 .poweroff = i915_pm_poweroff,
84b79f8d 710 .restore = i915_pm_resume,
cbda12d7
ZW
711};
712
de151cf6
JB
713static struct vm_operations_struct i915_gem_vm_ops = {
714 .fault = i915_gem_fault,
ab00b3e5
JB
715 .open = drm_gem_vm_open,
716 .close = drm_gem_vm_close,
de151cf6
JB
717};
718
1da177e4 719static struct drm_driver driver = {
792d2b9a
DA
720 /* don't use mtrr's here, the Xserver or user space app should
721 * deal with them for intel hardware.
722 */
673a394b
EA
723 .driver_features =
724 DRIVER_USE_AGP | DRIVER_REQUIRE_AGP | /* DRIVER_USE_MTRR |*/
725 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM,
22eae947 726 .load = i915_driver_load,
ba8bbcf6 727 .unload = i915_driver_unload,
673a394b 728 .open = i915_driver_open,
22eae947
DA
729 .lastclose = i915_driver_lastclose,
730 .preclose = i915_driver_preclose,
673a394b 731 .postclose = i915_driver_postclose,
d8e29209
RW
732
733 /* Used in place of i915_pm_ops for non-DRIVER_MODESET */
734 .suspend = i915_suspend,
735 .resume = i915_resume,
736
cda17380 737 .device_is_agp = i915_driver_device_is_agp,
0a3e67a4
JB
738 .enable_vblank = i915_enable_vblank,
739 .disable_vblank = i915_disable_vblank,
0af7e4df
MK
740 .get_vblank_timestamp = i915_get_vblank_timestamp,
741 .get_scanout_position = i915_get_crtc_scanoutpos,
1da177e4
LT
742 .irq_preinstall = i915_driver_irq_preinstall,
743 .irq_postinstall = i915_driver_irq_postinstall,
744 .irq_uninstall = i915_driver_irq_uninstall,
745 .irq_handler = i915_driver_irq_handler,
746 .reclaim_buffers = drm_core_reclaim_buffers,
7c1c2871
DA
747 .master_create = i915_master_create,
748 .master_destroy = i915_master_destroy,
955b12de 749#if defined(CONFIG_DEBUG_FS)
27c202ad
BG
750 .debugfs_init = i915_debugfs_init,
751 .debugfs_cleanup = i915_debugfs_cleanup,
955b12de 752#endif
673a394b
EA
753 .gem_init_object = i915_gem_init_object,
754 .gem_free_object = i915_gem_free_object,
de151cf6 755 .gem_vm_ops = &i915_gem_vm_ops,
ff72145b
DA
756 .dumb_create = i915_gem_dumb_create,
757 .dumb_map_offset = i915_gem_mmap_gtt,
758 .dumb_destroy = i915_gem_dumb_destroy,
1da177e4
LT
759 .ioctls = i915_ioctls,
760 .fops = {
b5e89ed5
DA
761 .owner = THIS_MODULE,
762 .open = drm_open,
763 .release = drm_release,
ed8b6704 764 .unlocked_ioctl = drm_ioctl,
de151cf6 765 .mmap = drm_gem_mmap,
b5e89ed5
DA
766 .poll = drm_poll,
767 .fasync = drm_fasync,
c9a9c5e0 768 .read = drm_read,
8ca7c1df 769#ifdef CONFIG_COMPAT
b5e89ed5 770 .compat_ioctl = i915_compat_ioctl,
8ca7c1df 771#endif
dc880abe 772 .llseek = noop_llseek,
22eae947
DA
773 },
774
22eae947
DA
775 .name = DRIVER_NAME,
776 .desc = DRIVER_DESC,
777 .date = DRIVER_DATE,
778 .major = DRIVER_MAJOR,
779 .minor = DRIVER_MINOR,
780 .patchlevel = DRIVER_PATCHLEVEL,
1da177e4
LT
781};
782
8410ea3b
DA
783static struct pci_driver i915_pci_driver = {
784 .name = DRIVER_NAME,
785 .id_table = pciidlist,
786 .probe = i915_pci_probe,
787 .remove = i915_pci_remove,
788 .driver.pm = &i915_pm_ops,
789};
790
1da177e4
LT
791static int __init i915_init(void)
792{
1f7a6e37
ZW
793 if (!intel_agp_enabled) {
794 DRM_ERROR("drm/i915 can't work without intel_agp module!\n");
795 return -ENODEV;
796 }
797
1da177e4 798 driver.num_ioctls = i915_max_ioctl;
79e53945
JB
799
800 /*
801 * If CONFIG_DRM_I915_KMS is set, default to KMS unless
802 * explicitly disabled with the module pararmeter.
803 *
804 * Otherwise, just follow the parameter (defaulting to off).
805 *
806 * Allow optional vga_text_mode_force boot option to override
807 * the default behavior.
808 */
809#if defined(CONFIG_DRM_I915_KMS)
810 if (i915_modeset != 0)
811 driver.driver_features |= DRIVER_MODESET;
812#endif
813 if (i915_modeset == 1)
814 driver.driver_features |= DRIVER_MODESET;
815
816#ifdef CONFIG_VGA_CONSOLE
817 if (vgacon_text_force() && i915_modeset == -1)
818 driver.driver_features &= ~DRIVER_MODESET;
819#endif
820
3885c6bb
CW
821 if (!(driver.driver_features & DRIVER_MODESET))
822 driver.get_vblank_timestamp = NULL;
823
8410ea3b 824 return drm_pci_init(&driver, &i915_pci_driver);
1da177e4
LT
825}
826
827static void __exit i915_exit(void)
828{
8410ea3b 829 drm_pci_exit(&driver, &i915_pci_driver);
1da177e4
LT
830}
831
832module_init(i915_init);
833module_exit(i915_exit);
834
b5e89ed5
DA
835MODULE_AUTHOR(DRIVER_AUTHOR);
836MODULE_DESCRIPTION(DRIVER_DESC);
1da177e4 837MODULE_LICENSE("GPL and additional rights");