blob: 6cdaa78f3a630d21868cb5f47a8bc1482a7cba4a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i915_drv.c -- i830,i845,i855,i865,i915 driver -*- linux-c -*-
2 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Dave Airliebc54fd12005-06-23 22:46:46 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10007 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
18 * of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
23 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Jesse Barnes5669fca2009-02-17 15:13:31 -080030#include <linux/device.h>
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/i915_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "i915_drv.h"
Chris Wilson990bbda2012-07-02 11:51:02 -030034#include "i915_trace.h"
Kenneth Graunkef49f0582010-09-11 01:19:14 -070035#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/console.h>
Paul Gortmakere0cd3602011-08-30 11:04:30 -040038#include <linux/module.h>
David Howells760285e2012-10-02 18:01:07 +010039#include <drm/drm_crtc_helper.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080040
Ben Widawskya35d9d32011-07-13 14:38:17 -070041static int i915_modeset __read_mostly = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -080042module_param_named(modeset, i915_modeset, int, 0400);
Ben Widawsky6e96e772011-07-13 14:38:18 -070043MODULE_PARM_DESC(modeset,
44 "Use kernel modesetting [KMS] (0=DRM_I915_KMS from .config, "
45 "1=on, -1=force vga console preference [default])");
Jesse Barnes79e53942008-11-07 14:24:08 -080046
Ben Widawskya35d9d32011-07-13 14:38:17 -070047unsigned int i915_fbpercrtc __always_unused = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080048module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Daniel Vettera7269152012-11-20 14:50:08 +010050int i915_panel_ignore_lid __read_mostly = 1;
Chris Wilsonfca87402011-02-17 13:44:48 +000051module_param_named(panel_ignore_lid, i915_panel_ignore_lid, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070052MODULE_PARM_DESC(panel_ignore_lid,
Daniel Vettera7269152012-11-20 14:50:08 +010053 "Override lid status (0=autodetect, 1=autodetect disabled [default], "
54 "-1=force lid closed, -2=force lid open)");
Chris Wilsonfca87402011-02-17 13:44:48 +000055
Ben Widawskya35d9d32011-07-13 14:38:17 -070056unsigned int i915_powersave __read_mostly = 1;
Chris Wilson0aa99272010-11-02 09:20:50 +000057module_param_named(powersave, i915_powersave, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070058MODULE_PARM_DESC(powersave,
59 "Enable powersavings, fbc, downclocking, etc. (default: true)");
Jesse Barnes652c3932009-08-17 13:31:43 -070060
Eugeni Dodonovf45b5552011-12-09 17:16:37 -080061int i915_semaphores __read_mostly = -1;
Chris Wilsona1656b92011-03-04 18:48:03 +000062module_param_named(semaphores, i915_semaphores, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070063MODULE_PARM_DESC(semaphores,
Eugeni Dodonovf45b5552011-12-09 17:16:37 -080064 "Use semaphores for inter-ring sync (default: -1 (use per-chip defaults))");
Chris Wilsona1656b92011-03-04 18:48:03 +000065
Keith Packardc0f372b32011-11-16 22:24:52 -080066int i915_enable_rc6 __read_mostly = -1;
Jesse Barnesf57f9c12012-04-11 09:39:02 -070067module_param_named(i915_enable_rc6, i915_enable_rc6, int, 0400);
Ben Widawsky6e96e772011-07-13 14:38:18 -070068MODULE_PARM_DESC(i915_enable_rc6,
Eugeni Dodonov83b7f9a2012-03-23 11:57:18 -030069 "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)");
Chris Wilsonac668082011-02-09 16:15:32 +000074
Keith Packard4415e632011-11-09 09:57:50 -080075int i915_enable_fbc __read_mostly = -1;
Jesse Barnesc1a9f042011-05-05 15:24:21 -070076module_param_named(i915_enable_fbc, i915_enable_fbc, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070077MODULE_PARM_DESC(i915_enable_fbc,
78 "Enable frame buffer compression for power savings "
Keith Packardcd0de032011-09-19 21:34:19 -070079 "(default: -1 (use per-chip default))");
Jesse Barnesc1a9f042011-05-05 15:24:21 -070080
Ben Widawskya35d9d32011-07-13 14:38:17 -070081unsigned int i915_lvds_downclock __read_mostly = 0;
Jesse Barnes33814342010-01-14 20:48:02 +000082module_param_named(lvds_downclock, i915_lvds_downclock, int, 0400);
Ben Widawsky6e96e772011-07-13 14:38:18 -070083MODULE_PARM_DESC(lvds_downclock,
84 "Use panel (LVDS/eDP) downclocking for power savings "
85 "(default: false)");
Jesse Barnes33814342010-01-14 20:48:02 +000086
Takashi Iwai121d5272012-03-20 13:07:06 +010087int i915_lvds_channel_mode __read_mostly;
88module_param_named(lvds_channel_mode, i915_lvds_channel_mode, int, 0600);
89MODULE_PARM_DESC(lvds_channel_mode,
90 "Specify LVDS channel mode "
91 "(0=probe BIOS [default], 1=single-channel, 2=dual-channel)");
92
Keith Packard4415e632011-11-09 09:57:50 -080093int i915_panel_use_ssc __read_mostly = -1;
Chris Wilsona7615032011-01-12 17:04:08 +000094module_param_named(lvds_use_ssc, i915_panel_use_ssc, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070095MODULE_PARM_DESC(lvds_use_ssc,
96 "Use Spread Spectrum Clock with panels [LVDS/eDP] "
Keith Packard72bbe58c2011-09-26 16:09:45 -070097 "(default: auto from VBT)");
Chris Wilsona7615032011-01-12 17:04:08 +000098
Ben Widawskya35d9d32011-07-13 14:38:17 -070099int i915_vbt_sdvo_panel_type __read_mostly = -1;
Chris Wilson5a1e5b62011-01-29 16:50:25 +0000100module_param_named(vbt_sdvo_panel_type, i915_vbt_sdvo_panel_type, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -0700101MODULE_PARM_DESC(vbt_sdvo_panel_type,
Mathias Fröhlichc10e4082012-03-01 06:44:35 +0100102 "Override/Ignore selection of SDVO panel mode in the VBT "
103 "(-2=ignore, -1=auto [default], index in VBT BIOS table)");
Chris Wilson5a1e5b62011-01-29 16:50:25 +0000104
Ben Widawskya35d9d32011-07-13 14:38:17 -0700105static bool i915_try_reset __read_mostly = true;
Chris Wilsond78cb502010-12-23 13:33:15 +0000106module_param_named(reset, i915_try_reset, bool, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -0700107MODULE_PARM_DESC(reset, "Attempt GPU resets (default: true)");
Chris Wilsond78cb502010-12-23 13:33:15 +0000108
Ben Widawskya35d9d32011-07-13 14:38:17 -0700109bool i915_enable_hangcheck __read_mostly = true;
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700110module_param_named(enable_hangcheck, i915_enable_hangcheck, bool, 0644);
Ben Widawsky6e96e772011-07-13 14:38:18 -0700111MODULE_PARM_DESC(enable_hangcheck,
112 "Periodically check GPU activity for detecting hangs. "
113 "WARNING: Disabling this can cause system wide hangs. "
114 "(default: true)");
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700115
Daniel Vetter650dc072012-04-02 10:08:35 +0200116int i915_enable_ppgtt __read_mostly = -1;
Ben Widawskyad525462013-11-25 09:54:36 -0800117module_param_named(i915_enable_ppgtt, i915_enable_ppgtt, int, 0400);
Daniel Vettere21af882012-02-09 20:53:27 +0100118MODULE_PARM_DESC(i915_enable_ppgtt,
Ben Widawsky7e0d96b2013-12-06 14:11:26 -0800119 "Override PPGTT usage. "
120 "(-1=auto [default], 0=disabled, 1=aliasing, 2=full)");
Daniel Vettere21af882012-02-09 20:53:27 +0100121
Rodrigo Vivi105b7c12013-07-11 18:45:02 -0300122int i915_enable_psr __read_mostly = 0;
123module_param_named(enable_psr, i915_enable_psr, int, 0600);
124MODULE_PARM_DESC(enable_psr, "Enable PSR (default: false)");
125
Josh Triplett99486b82013-08-13 16:23:17 -0700126unsigned int i915_preliminary_hw_support __read_mostly = IS_ENABLED(CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT);
Rodrigo Vivi0a3af262012-10-15 17:16:23 -0300127module_param_named(preliminary_hw_support, i915_preliminary_hw_support, int, 0600);
128MODULE_PARM_DESC(preliminary_hw_support,
Josh Triplett99486b82013-08-13 16:23:17 -0700129 "Enable preliminary hardware support.");
Rodrigo Vivi0a3af262012-10-15 17:16:23 -0300130
Paulo Zanonibf51d5e2013-07-03 17:12:13 -0300131int i915_disable_power_well __read_mostly = 1;
Paulo Zanoni2124b722013-03-22 14:07:23 -0300132module_param_named(disable_power_well, i915_disable_power_well, int, 0600);
133MODULE_PARM_DESC(disable_power_well,
Paulo Zanonibf51d5e2013-07-03 17:12:13 -0300134 "Disable the power well when possible (default: true)");
Paulo Zanoni2124b722013-03-22 14:07:23 -0300135
Paulo Zanoni3c4ca582013-05-31 16:33:23 -0300136int i915_enable_ips __read_mostly = 1;
137module_param_named(enable_ips, i915_enable_ips, int, 0600);
138MODULE_PARM_DESC(enable_ips, "Enable IPS (default: true)");
139
Jesse Barnes2385bdf2013-06-26 01:38:15 +0300140bool i915_fastboot __read_mostly = 0;
141module_param_named(fastboot, i915_fastboot, bool, 0600);
142MODULE_PARM_DESC(fastboot, "Try to skip unnecessary mode sets at boot time "
143 "(default: false)");
144
Paulo Zanonie27e9702013-08-19 13:18:12 -0300145int i915_enable_pc8 __read_mostly = 1;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300146module_param_named(enable_pc8, i915_enable_pc8, int, 0600);
Paulo Zanonie27e9702013-08-19 13:18:12 -0300147MODULE_PARM_DESC(enable_pc8, "Enable support for low power package C states (PC8+) (default: true)");
Paulo Zanonic67a4702013-08-19 13:18:09 -0300148
Paulo Zanoni90058742013-08-19 13:18:11 -0300149int i915_pc8_timeout __read_mostly = 5000;
150module_param_named(pc8_timeout, i915_pc8_timeout, int, 0600);
151MODULE_PARM_DESC(pc8_timeout, "Number of msecs of idleness required to enter PC8+ (default: 5000)");
152
Xiong Zhang0b74b502013-07-19 13:51:24 +0800153bool i915_prefault_disable __read_mostly;
154module_param_named(prefault_disable, i915_prefault_disable, bool, 0600);
155MODULE_PARM_DESC(prefault_disable,
156 "Disable page prefaulting for pread/pwrite/reloc (default:false). For developers only.");
157
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500158static struct drm_driver driver;
159
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200160static const struct intel_device_info intel_i830_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700161 .gen = 2, .is_mobile = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100162 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700163 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500164};
165
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200166static const struct intel_device_info intel_845g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700167 .gen = 2, .num_pipes = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100168 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700169 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500170};
171
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200172static const struct intel_device_info intel_i85x_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700173 .gen = 2, .is_i85x = 1, .is_mobile = 1, .num_pipes = 2,
Adam Jackson5ce8ba72010-04-15 14:03:30 -0400174 .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100175 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700176 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500177};
178
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200179static const struct intel_device_info intel_i865g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700180 .gen = 2, .num_pipes = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100181 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700182 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500183};
184
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200185static const struct intel_device_info intel_i915g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700186 .gen = 3, .is_i915g = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100187 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700188 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500189};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200190static const struct intel_device_info intel_i915gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700191 .gen = 3, .is_mobile = 1, .num_pipes = 2,
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -0500192 .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100193 .has_overlay = 1, .overlay_needs_physical = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100194 .supports_tv = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700195 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500196};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200197static const struct intel_device_info intel_i945g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700198 .gen = 3, .has_hotplug = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100199 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700200 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500201};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200202static const struct intel_device_info intel_i945gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700203 .gen = 3, .is_i945gm = 1, .is_mobile = 1, .num_pipes = 2,
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -0500204 .has_hotplug = 1, .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100205 .has_overlay = 1, .overlay_needs_physical = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100206 .supports_tv = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700207 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500208};
209
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200210static const struct intel_device_info intel_i965g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700211 .gen = 4, .is_broadwater = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100212 .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100213 .has_overlay = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700214 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500215};
216
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200217static const struct intel_device_info intel_i965gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700218 .gen = 4, .is_crestline = 1, .num_pipes = 2,
Chris Wilsone3c4e5d2010-12-05 16:49:51 +0000219 .is_mobile = 1, .has_fbc = 1, .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100220 .has_overlay = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100221 .supports_tv = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700222 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500223};
224
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200225static const struct intel_device_info intel_g33_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700226 .gen = 3, .is_g33 = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100227 .need_gfx_hws = 1, .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100228 .has_overlay = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700229 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500230};
231
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200232static const struct intel_device_info intel_g45_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700233 .gen = 4, .is_g4x = 1, .need_gfx_hws = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100234 .has_pipe_cxsr = 1, .has_hotplug = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700235 .ring_mask = RENDER_RING | BSD_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500236};
237
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200238static const struct intel_device_info intel_gm45_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700239 .gen = 4, .is_g4x = 1, .num_pipes = 2,
Chris Wilsone3c4e5d2010-12-05 16:49:51 +0000240 .is_mobile = 1, .need_gfx_hws = 1, .has_fbc = 1,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100241 .has_pipe_cxsr = 1, .has_hotplug = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100242 .supports_tv = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700243 .ring_mask = RENDER_RING | BSD_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500244};
245
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200246static const struct intel_device_info intel_pineview_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700247 .gen = 3, .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100248 .need_gfx_hws = 1, .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100249 .has_overlay = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500250};
251
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200252static const struct intel_device_info intel_ironlake_d_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700253 .gen = 5, .num_pipes = 2,
Eugeni Dodonov5a117db2012-01-05 09:34:29 -0200254 .need_gfx_hws = 1, .has_hotplug = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700255 .ring_mask = RENDER_RING | BSD_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500256};
257
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200258static const struct intel_device_info intel_ironlake_m_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700259 .gen = 5, .is_mobile = 1, .num_pipes = 2,
Chris Wilsone3c4e5d2010-12-05 16:49:51 +0000260 .need_gfx_hws = 1, .has_hotplug = 1,
Jesse Barnesc1a9f042011-05-05 15:24:21 -0700261 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700262 .ring_mask = RENDER_RING | BSD_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500263};
264
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200265static const struct intel_device_info intel_sandybridge_d_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700266 .gen = 6, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100267 .need_gfx_hws = 1, .has_hotplug = 1,
Ville Syrjäläcbaef0f2013-11-06 23:02:24 +0200268 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700269 .ring_mask = RENDER_RING | BSD_RING | BLT_RING,
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200270 .has_llc = 1,
Eric Anholtf6e450a2009-11-02 12:08:22 -0800271};
272
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200273static const struct intel_device_info intel_sandybridge_m_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700274 .gen = 6, .is_mobile = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100275 .need_gfx_hws = 1, .has_hotplug = 1,
Yuanhan Liu9c04f012010-12-15 15:42:32 +0800276 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700277 .ring_mask = RENDER_RING | BSD_RING | BLT_RING,
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200278 .has_llc = 1,
Eric Anholta13e4092010-01-07 15:08:18 -0800279};
280
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700281#define GEN7_FEATURES \
282 .gen = 7, .num_pipes = 3, \
283 .need_gfx_hws = 1, .has_hotplug = 1, \
Ville Syrjäläcbaef0f2013-11-06 23:02:24 +0200284 .has_fbc = 1, \
Ben Widawsky73ae4782013-10-15 10:02:57 -0700285 .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
Ben Widawskyab484f82013-10-05 17:57:11 -0700286 .has_llc = 1
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700287
Jesse Barnesc76b6152011-04-28 14:32:07 -0700288static const struct intel_device_info intel_ivybridge_d_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700289 GEN7_FEATURES,
290 .is_ivybridge = 1,
Jesse Barnesc76b6152011-04-28 14:32:07 -0700291};
292
293static const struct intel_device_info intel_ivybridge_m_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700294 GEN7_FEATURES,
295 .is_ivybridge = 1,
296 .is_mobile = 1,
Jesse Barnesc76b6152011-04-28 14:32:07 -0700297};
298
Ben Widawsky999bcde2013-04-05 13:12:45 -0700299static const struct intel_device_info intel_ivybridge_q_info = {
300 GEN7_FEATURES,
301 .is_ivybridge = 1,
302 .num_pipes = 0, /* legal, last one wins */
303};
304
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700305static const struct intel_device_info intel_valleyview_m_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700306 GEN7_FEATURES,
307 .is_mobile = 1,
308 .num_pipes = 2,
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700309 .is_valleyview = 1,
Ville Syrjäläfba5d532013-01-24 15:29:56 +0200310 .display_mmio_offset = VLV_DISPLAY_BASE,
Ville Syrjäläcbaef0f2013-11-06 23:02:24 +0200311 .has_fbc = 0, /* legal, last one wins */
Ben Widawsky30ccd962013-04-15 21:48:03 -0700312 .has_llc = 0, /* legal, last one wins */
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700313};
314
315static const struct intel_device_info intel_valleyview_d_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700316 GEN7_FEATURES,
317 .num_pipes = 2,
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700318 .is_valleyview = 1,
Ville Syrjäläfba5d532013-01-24 15:29:56 +0200319 .display_mmio_offset = VLV_DISPLAY_BASE,
Ville Syrjäläcbaef0f2013-11-06 23:02:24 +0200320 .has_fbc = 0, /* legal, last one wins */
Ben Widawsky30ccd962013-04-15 21:48:03 -0700321 .has_llc = 0, /* legal, last one wins */
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700322};
323
Eugeni Dodonov4cae9ae2012-03-29 12:32:18 -0300324static const struct intel_device_info intel_haswell_d_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700325 GEN7_FEATURES,
326 .is_haswell = 1,
Damien Lespiaudd93be52013-04-22 18:40:39 +0100327 .has_ddi = 1,
Damien Lespiau30568c42013-04-22 18:40:41 +0100328 .has_fpga_dbg = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700329 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
Eugeni Dodonov4cae9ae2012-03-29 12:32:18 -0300330};
331
332static const struct intel_device_info intel_haswell_m_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700333 GEN7_FEATURES,
334 .is_haswell = 1,
335 .is_mobile = 1,
Damien Lespiaudd93be52013-04-22 18:40:39 +0100336 .has_ddi = 1,
Damien Lespiau30568c42013-04-22 18:40:41 +0100337 .has_fpga_dbg = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700338 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500339};
340
Ben Widawsky4d4dead2013-11-03 16:47:33 -0800341static const struct intel_device_info intel_broadwell_d_info = {
342 .is_preliminary = 1,
Damien Lespiau4b305532013-11-02 21:07:32 -0700343 .gen = 8, .num_pipes = 3,
Ben Widawsky4d4dead2013-11-03 16:47:33 -0800344 .need_gfx_hws = 1, .has_hotplug = 1,
345 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
346 .has_llc = 1,
347 .has_ddi = 1,
348};
349
350static const struct intel_device_info intel_broadwell_m_info = {
351 .is_preliminary = 1,
Damien Lespiau4b305532013-11-02 21:07:32 -0700352 .gen = 8, .is_mobile = 1, .num_pipes = 3,
Ben Widawsky4d4dead2013-11-03 16:47:33 -0800353 .need_gfx_hws = 1, .has_hotplug = 1,
354 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
355 .has_llc = 1,
356 .has_ddi = 1,
357};
358
Jesse Barnesa0a18072013-07-26 13:32:51 -0700359/*
360 * Make sure any device matches here are from most specific to most
361 * general. For example, since the Quanta match is based on the subsystem
362 * and subvendor IDs, we need it to come before the more general IVB
363 * PCI ID matches, otherwise we'll use the wrong info struct above.
364 */
365#define INTEL_PCI_IDS \
366 INTEL_I830_IDS(&intel_i830_info), \
367 INTEL_I845G_IDS(&intel_845g_info), \
368 INTEL_I85X_IDS(&intel_i85x_info), \
369 INTEL_I865G_IDS(&intel_i865g_info), \
370 INTEL_I915G_IDS(&intel_i915g_info), \
371 INTEL_I915GM_IDS(&intel_i915gm_info), \
372 INTEL_I945G_IDS(&intel_i945g_info), \
373 INTEL_I945GM_IDS(&intel_i945gm_info), \
374 INTEL_I965G_IDS(&intel_i965g_info), \
375 INTEL_G33_IDS(&intel_g33_info), \
376 INTEL_I965GM_IDS(&intel_i965gm_info), \
377 INTEL_GM45_IDS(&intel_gm45_info), \
378 INTEL_G45_IDS(&intel_g45_info), \
379 INTEL_PINEVIEW_IDS(&intel_pineview_info), \
380 INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info), \
381 INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info), \
382 INTEL_SNB_D_IDS(&intel_sandybridge_d_info), \
383 INTEL_SNB_M_IDS(&intel_sandybridge_m_info), \
384 INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */ \
385 INTEL_IVB_M_IDS(&intel_ivybridge_m_info), \
386 INTEL_IVB_D_IDS(&intel_ivybridge_d_info), \
387 INTEL_HSW_D_IDS(&intel_haswell_d_info), \
388 INTEL_HSW_M_IDS(&intel_haswell_m_info), \
389 INTEL_VLV_M_IDS(&intel_valleyview_m_info), \
Ben Widawsky4d4dead2013-11-03 16:47:33 -0800390 INTEL_VLV_D_IDS(&intel_valleyview_d_info), \
391 INTEL_BDW_M_IDS(&intel_broadwell_m_info), \
392 INTEL_BDW_D_IDS(&intel_broadwell_d_info)
Jesse Barnesa0a18072013-07-26 13:32:51 -0700393
Chris Wilson6103da02010-07-05 18:01:47 +0100394static const struct pci_device_id pciidlist[] = { /* aka */
Jesse Barnesa0a18072013-07-26 13:32:51 -0700395 INTEL_PCI_IDS,
Kristian Høgsberg49ae35f2009-12-16 15:16:15 -0500396 {0, 0, 0}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397};
398
Jesse Barnes79e53942008-11-07 14:24:08 -0800399#if defined(CONFIG_DRM_I915_KMS)
400MODULE_DEVICE_TABLE(pci, pciidlist);
401#endif
402
Akshay Joshi0206e352011-08-16 15:34:10 -0400403void intel_detect_pch(struct drm_device *dev)
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800404{
405 struct drm_i915_private *dev_priv = dev->dev_private;
406 struct pci_dev *pch;
407
Ben Widawskyce1bb322013-04-05 13:12:44 -0700408 /* In all current cases, num_pipes is equivalent to the PCH_NOP setting
409 * (which really amounts to a PCH but no South Display).
410 */
411 if (INTEL_INFO(dev)->num_pipes == 0) {
412 dev_priv->pch_type = PCH_NOP;
Ben Widawskyce1bb322013-04-05 13:12:44 -0700413 return;
414 }
415
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800416 /*
417 * The reason to probe ISA bridge instead of Dev31:Fun0 is to
418 * make graphics device passthrough work easy for VMM, that only
419 * need to expose ISA bridge to let driver know the real hardware
420 * underneath. This is a requirement from virtualization team.
Rui Guo6a9c4b32013-06-19 21:10:23 +0800421 *
422 * In some virtualized environments (e.g. XEN), there is irrelevant
423 * ISA bridge in the system. To work reliably, we should scan trhough
424 * all the ISA bridge devices and check for the first match, instead
425 * of only checking the first one.
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800426 */
427 pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
Rui Guo6a9c4b32013-06-19 21:10:23 +0800428 while (pch) {
429 struct pci_dev *curr = pch;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800430 if (pch->vendor == PCI_VENDOR_ID_INTEL) {
Paulo Zanoni17a303e2012-11-20 15:12:07 -0200431 unsigned short id;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800432 id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
Paulo Zanoni17a303e2012-11-20 15:12:07 -0200433 dev_priv->pch_id = id;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800434
Jesse Barnes90711d52011-04-28 14:48:02 -0700435 if (id == INTEL_PCH_IBX_DEVICE_ID_TYPE) {
436 dev_priv->pch_type = PCH_IBX;
437 DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100438 WARN_ON(!IS_GEN5(dev));
Jesse Barnes90711d52011-04-28 14:48:02 -0700439 } else if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800440 dev_priv->pch_type = PCH_CPT;
441 DRM_DEBUG_KMS("Found CougarPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100442 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
Jesse Barnesc7925132011-04-07 12:33:56 -0700443 } else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
444 /* PantherPoint is CPT compatible */
445 dev_priv->pch_type = PCH_CPT;
Jani Nikula492ab662013-10-01 12:12:33 +0300446 DRM_DEBUG_KMS("Found PantherPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100447 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
Eugeni Dodonoveb877eb2012-03-29 12:32:20 -0300448 } else if (id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
449 dev_priv->pch_type = PCH_LPT;
450 DRM_DEBUG_KMS("Found LynxPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100451 WARN_ON(!IS_HASWELL(dev));
Paulo Zanoni08e14132013-04-12 18:16:54 -0300452 WARN_ON(IS_ULT(dev));
Paulo Zanoni018f52c2013-11-02 21:07:35 -0700453 } else if (IS_BROADWELL(dev)) {
454 dev_priv->pch_type = PCH_LPT;
455 dev_priv->pch_id =
456 INTEL_PCH_LPT_LP_DEVICE_ID_TYPE;
457 DRM_DEBUG_KMS("This is Broadwell, assuming "
458 "LynxPoint LP PCH\n");
Wei Shun Changae6935d2012-11-12 18:54:13 -0200459 } else if (id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
460 dev_priv->pch_type = PCH_LPT;
Wei Shun Changae6935d2012-11-12 18:54:13 -0200461 DRM_DEBUG_KMS("Found LynxPoint LP PCH\n");
462 WARN_ON(!IS_HASWELL(dev));
Paulo Zanoni08e14132013-04-12 18:16:54 -0300463 WARN_ON(!IS_ULT(dev));
Rui Guo6a9c4b32013-06-19 21:10:23 +0800464 } else {
465 goto check_next;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800466 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800467 pci_dev_put(pch);
468 break;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800469 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800470check_next:
471 pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, curr);
472 pci_dev_put(curr);
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800473 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800474 if (!pch)
475 DRM_DEBUG_KMS("No PCH found?\n");
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800476}
477
Ben Widawsky2911a352012-04-05 14:47:36 -0700478bool i915_semaphore_is_enabled(struct drm_device *dev)
479{
480 if (INTEL_INFO(dev)->gen < 6)
481 return 0;
482
Ben Widawskye64c4a12013-11-04 19:45:44 -0800483 /* Until we get further testing... */
484 if (IS_GEN8(dev)) {
485 WARN_ON(!i915_preliminary_hw_support);
486 return 0;
487 }
488
Ben Widawsky2911a352012-04-05 14:47:36 -0700489 if (i915_semaphores >= 0)
490 return i915_semaphores;
491
Daniel Vetter59de3292012-04-02 20:48:43 +0200492#ifdef CONFIG_INTEL_IOMMU
Ben Widawsky2911a352012-04-05 14:47:36 -0700493 /* Enable semaphores on SNB when IO remapping is off */
Daniel Vetter59de3292012-04-02 20:48:43 +0200494 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
495 return false;
496#endif
Ben Widawsky2911a352012-04-05 14:47:36 -0700497
498 return 1;
499}
500
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100501static int i915_drm_freeze(struct drm_device *dev)
502{
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100503 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes24576d22013-03-26 09:25:45 -0700504 struct drm_crtc *crtc;
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100505
Zhang Ruib8efb172013-02-05 15:41:53 +0800506 /* ignore lid events during suspend */
507 mutex_lock(&dev_priv->modeset_restore_lock);
508 dev_priv->modeset_restore = MODESET_SUSPENDED;
509 mutex_unlock(&dev_priv->modeset_restore_lock);
510
Paulo Zanonic67a4702013-08-19 13:18:09 -0300511 /* We do a lot of poking in a lot of registers, make sure they work
512 * properly. */
513 hsw_disable_package_c8(dev_priv);
Imre Deakbaa70702013-10-25 17:36:48 +0300514 intel_display_set_init_power(dev, true);
Paulo Zanonicb107992013-01-25 16:59:15 -0200515
Dave Airlie5bcf7192010-12-07 09:20:40 +1000516 drm_kms_helper_poll_disable(dev);
517
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100518 pci_save_state(dev->pdev);
519
520 /* If KMS is active, we do the leavevt stuff here */
521 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200522 int error;
523
Chris Wilson45c5f202013-10-16 11:50:01 +0100524 error = i915_gem_suspend(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100525 if (error) {
526 dev_err(&dev->pdev->dev,
527 "GEM idle failed, resume might fail\n");
528 return error;
529 }
Daniel Vettera261b242012-07-26 19:21:47 +0200530
Jesse Barnes1a01ab32012-11-02 11:14:00 -0700531 cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
532
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100533 drm_irq_uninstall(dev);
Daniel Vetter15239092013-03-05 09:50:58 +0100534 dev_priv->enable_hotplug_processing = false;
Jesse Barnes24576d22013-03-26 09:25:45 -0700535 /*
536 * Disable CRTCs directly since we want to preserve sw state
537 * for _thaw.
538 */
Jesse Barnes7c063c72013-11-26 09:13:41 -0800539 mutex_lock(&dev->mode_config.mutex);
Jesse Barnes24576d22013-03-26 09:25:45 -0700540 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
541 dev_priv->display.crtc_disable(crtc);
Jesse Barnes7c063c72013-11-26 09:13:41 -0800542 mutex_unlock(&dev->mode_config.mutex);
Imre Deak7d708ee2013-04-17 14:04:50 +0300543
544 intel_modeset_suspend_hw(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100545 }
546
Ben Widawsky828c7902013-10-16 09:21:30 -0700547 i915_gem_suspend_gtt_mappings(dev);
548
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100549 i915_save_state(dev);
550
Chris Wilson44834a62010-08-19 16:09:23 +0100551 intel_opregion_fini(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100552
Dave Airlie3fa016a2012-03-28 10:48:49 +0100553 console_lock();
Damien Lespiaub6f3eff2013-06-10 15:48:09 +0100554 intel_fbdev_set_suspend(dev, FBINFO_STATE_SUSPENDED);
Dave Airlie3fa016a2012-03-28 10:48:49 +0100555 console_unlock();
556
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100557 return 0;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100558}
559
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000560int i915_suspend(struct drm_device *dev, pm_message_t state)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100561{
562 int error;
563
564 if (!dev || !dev->dev_private) {
565 DRM_ERROR("dev: %p\n", dev);
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700566 DRM_ERROR("DRM not initialized, aborting suspend.\n");
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000567 return -ENODEV;
568 }
569
Dave Airlieb932ccb2008-02-20 10:02:20 +1000570 if (state.event == PM_EVENT_PRETHAW)
571 return 0;
572
Dave Airlie5bcf7192010-12-07 09:20:40 +1000573
574 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
575 return 0;
Chris Wilson6eecba32010-09-08 09:45:11 +0100576
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100577 error = i915_drm_freeze(dev);
578 if (error)
579 return error;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000580
Dave Airlieb932ccb2008-02-20 10:02:20 +1000581 if (state.event == PM_EVENT_SUSPEND) {
582 /* Shut down the device */
583 pci_disable_device(dev->pdev);
584 pci_set_power_state(dev->pdev, PCI_D3hot);
585 }
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000586
587 return 0;
588}
589
Jesse Barnes073f34d2012-11-02 11:13:59 -0700590void intel_console_resume(struct work_struct *work)
591{
592 struct drm_i915_private *dev_priv =
593 container_of(work, struct drm_i915_private,
594 console_resume_work);
595 struct drm_device *dev = dev_priv->dev;
596
597 console_lock();
Damien Lespiaub6f3eff2013-06-10 15:48:09 +0100598 intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING);
Jesse Barnes073f34d2012-11-02 11:13:59 -0700599 console_unlock();
600}
601
Jesse Barnesbb60b962013-03-26 09:25:46 -0700602static void intel_resume_hotplug(struct drm_device *dev)
603{
604 struct drm_mode_config *mode_config = &dev->mode_config;
605 struct intel_encoder *encoder;
606
607 mutex_lock(&mode_config->mutex);
608 DRM_DEBUG_KMS("running encoder hotplug functions\n");
609
610 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
611 if (encoder->hot_plug)
612 encoder->hot_plug(encoder);
613
614 mutex_unlock(&mode_config->mutex);
615
616 /* Just fire off a uevent and let userspace tell us what to do */
617 drm_helper_hpd_irq_event(dev);
618}
619
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300620static int __i915_drm_thaw(struct drm_device *dev, bool restore_gtt_mappings)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000621{
Jesse Barnes5669fca2009-02-17 15:13:31 -0800622 struct drm_i915_private *dev_priv = dev->dev_private;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100623 int error = 0;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100624
Ville Syrjäläc9f7fbf2013-09-16 17:38:36 +0300625 intel_uncore_early_sanitize(dev);
626
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300627 intel_uncore_sanitize(dev);
628
629 if (drm_core_check_feature(dev, DRIVER_MODESET) &&
630 restore_gtt_mappings) {
631 mutex_lock(&dev->struct_mutex);
632 i915_gem_restore_gtt_mappings(dev);
633 mutex_unlock(&dev->struct_mutex);
634 }
635
Imre Deakddb642f2013-10-28 17:20:35 +0200636 intel_power_domains_init_hw(dev);
Ville Syrjäläebdcefc2013-09-16 17:38:35 +0300637
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100638 i915_restore_state(dev);
Chris Wilson44834a62010-08-19 16:09:23 +0100639 intel_opregion_setup(dev);
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100640
Jesse Barnes5669fca2009-02-17 15:13:31 -0800641 /* KMS EnterVT equivalent */
642 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Paulo Zanonidde86e22012-12-01 12:04:25 -0200643 intel_init_pch_refclk(dev);
Chris Wilson1833b132012-05-09 11:56:28 +0100644
Jesse Barnes5669fca2009-02-17 15:13:31 -0800645 mutex_lock(&dev->struct_mutex);
Jesse Barnes5669fca2009-02-17 15:13:31 -0800646
Daniel Vetterf691e2f2012-02-02 09:58:12 +0100647 error = i915_gem_init_hw(dev);
Jesse Barnes5669fca2009-02-17 15:13:31 -0800648 mutex_unlock(&dev->struct_mutex);
Jesse Barnes226485e2009-02-23 15:41:09 -0800649
Daniel Vetter15239092013-03-05 09:50:58 +0100650 /* We need working interrupts for modeset enabling ... */
651 drm_irq_install(dev);
652
Chris Wilson1833b132012-05-09 11:56:28 +0100653 intel_modeset_init_hw(dev);
Jesse Barnes24576d22013-03-26 09:25:45 -0700654
655 drm_modeset_lock_all(dev);
Chris Wilsonedd5b132013-12-02 17:39:09 +0000656 drm_mode_config_reset(dev);
Jesse Barnes24576d22013-03-26 09:25:45 -0700657 intel_modeset_setup_hw_state(dev, true);
658 drm_modeset_unlock_all(dev);
Daniel Vetter15239092013-03-05 09:50:58 +0100659
660 /*
661 * ... but also need to make sure that hotplug processing
662 * doesn't cause havoc. Like in the driver load code we don't
663 * bother with the tiny race here where we might loose hotplug
664 * notifications.
665 * */
Daniel Vetter20afbda2012-12-11 14:05:07 +0100666 intel_hpd_init(dev);
Daniel Vetter15239092013-03-05 09:50:58 +0100667 dev_priv->enable_hotplug_processing = true;
Jesse Barnesbb60b962013-03-26 09:25:46 -0700668 /* Config may have changed between suspend and resume */
669 intel_resume_hotplug(dev);
Jesse Barnesd5bb0812011-01-05 12:01:26 -0800670 }
Jesse Barnes1daed3f2011-01-05 12:01:25 -0800671
Chris Wilson44834a62010-08-19 16:09:23 +0100672 intel_opregion_init(dev);
673
Jesse Barnes073f34d2012-11-02 11:13:59 -0700674 /*
675 * The console lock can be pretty contented on resume due
676 * to all the printk activity. Try to keep it out of the hot
677 * path of resume if possible.
678 */
679 if (console_trylock()) {
Damien Lespiaub6f3eff2013-06-10 15:48:09 +0100680 intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING);
Jesse Barnes073f34d2012-11-02 11:13:59 -0700681 console_unlock();
682 } else {
683 schedule_work(&dev_priv->console_resume_work);
684 }
685
Paulo Zanonic67a4702013-08-19 13:18:09 -0300686 /* Undo what we did at i915_drm_freeze so the refcount goes back to the
687 * expected level. */
688 hsw_enable_package_c8(dev_priv);
689
Zhang Ruib8efb172013-02-05 15:41:53 +0800690 mutex_lock(&dev_priv->modeset_restore_lock);
691 dev_priv->modeset_restore = MODESET_DONE;
692 mutex_unlock(&dev_priv->modeset_restore_lock);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100693 return error;
694}
695
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700696static int i915_drm_thaw(struct drm_device *dev)
697{
Daniel Vetter7f16e5c2013-11-04 16:28:47 +0100698 if (drm_core_check_feature(dev, DRIVER_MODESET))
Ben Widawsky828c7902013-10-16 09:21:30 -0700699 i915_check_and_clear_faults(dev);
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700700
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300701 return __i915_drm_thaw(dev, true);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100702}
703
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000704int i915_resume(struct drm_device *dev)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100705{
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700706 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6eecba32010-09-08 09:45:11 +0100707 int ret;
708
Dave Airlie5bcf7192010-12-07 09:20:40 +1000709 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
710 return 0;
711
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100712 if (pci_enable_device(dev->pdev))
713 return -EIO;
714
715 pci_set_master(dev->pdev);
716
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700717 /*
718 * Platforms with opregion should have sane BIOS, older ones (gen3 and
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300719 * earlier) need to restore the GTT mappings since the BIOS might clear
720 * all our scratch PTEs.
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700721 */
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300722 ret = __i915_drm_thaw(dev, !dev_priv->opregion.header);
Chris Wilson6eecba32010-09-08 09:45:11 +0100723 if (ret)
724 return ret;
725
726 drm_kms_helper_poll_enable(dev);
727 return 0;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000728}
729
Ben Gamari11ed50e2009-09-14 17:48:45 -0400730/**
Eugeni Dodonovf3953dc2011-11-28 16:15:17 -0200731 * i915_reset - reset chip after a hang
Ben Gamari11ed50e2009-09-14 17:48:45 -0400732 * @dev: drm device to reset
Ben Gamari11ed50e2009-09-14 17:48:45 -0400733 *
734 * Reset the chip. Useful if a hang is detected. Returns zero on successful
735 * reset or otherwise an error code.
736 *
737 * Procedure is fairly simple:
738 * - reset the chip using the reset reg
739 * - re-init context state
740 * - re-init hardware status page
741 * - re-init ring buffer
742 * - re-init interrupt state
743 * - re-init display
744 */
Daniel Vetterd4b8bb22012-04-27 15:17:44 +0200745int i915_reset(struct drm_device *dev)
Ben Gamari11ed50e2009-09-14 17:48:45 -0400746{
747 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100748 bool simulated;
Kenneth Graunke0573ed42010-09-11 03:17:19 -0700749 int ret;
Ben Gamari11ed50e2009-09-14 17:48:45 -0400750
Chris Wilsond78cb502010-12-23 13:33:15 +0000751 if (!i915_try_reset)
752 return 0;
753
Daniel Vetterd54a02c2012-07-04 22:18:39 +0200754 mutex_lock(&dev->struct_mutex);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400755
Chris Wilson069efc12010-09-30 16:53:18 +0100756 i915_gem_reset(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400757
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100758 simulated = dev_priv->gpu_error.stop_rings != 0;
759
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300760 ret = intel_gpu_reset(dev);
Daniel Vetter350d2702012-04-27 15:17:42 +0200761
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300762 /* Also reset the gpu hangman. */
763 if (simulated) {
764 DRM_INFO("Simulated gpu hang, resetting stop_rings\n");
765 dev_priv->gpu_error.stop_rings = 0;
766 if (ret == -ENODEV) {
Daniel Vetterf2d91a22013-11-07 09:48:57 +0100767 DRM_INFO("Reset not implemented, but ignoring "
768 "error for simulated gpu hangs\n");
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300769 ret = 0;
770 }
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100771 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300772
Kenneth Graunke0573ed42010-09-11 03:17:19 -0700773 if (ret) {
Daniel Vetterf2d91a22013-11-07 09:48:57 +0100774 DRM_ERROR("Failed to reset chip: %i\n", ret);
Daniel J Bluemanf953c932010-05-17 14:23:52 +0100775 mutex_unlock(&dev->struct_mutex);
Chris Wilsonf803aa52010-09-19 12:38:26 +0100776 return ret;
Ben Gamari11ed50e2009-09-14 17:48:45 -0400777 }
778
779 /* Ok, now get things going again... */
780
781 /*
782 * Everything depends on having the GTT running, so we need to start
783 * there. Fortunately we don't need to do this unless we reset the
784 * chip at a PCI level.
785 *
786 * Next we need to restore the context, but we don't use those
787 * yet either...
788 *
789 * Ring buffer needs to be re-initialized in the KMS case, or if X
790 * was running at the time of the reset (i.e. we weren't VT
791 * switched away).
792 */
793 if (drm_core_check_feature(dev, DRIVER_MODESET) ||
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200794 !dev_priv->ums.mm_suspended) {
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200795 dev_priv->ums.mm_suspended = 0;
Eric Anholt75a68982010-11-18 09:31:13 +0800796
Ben Widawsky3d57e5b2013-10-14 10:01:36 -0700797 ret = i915_gem_init_hw(dev);
Daniel Vetter8e88a2b2012-06-19 18:40:00 +0200798 mutex_unlock(&dev->struct_mutex);
Ben Widawsky3d57e5b2013-10-14 10:01:36 -0700799 if (ret) {
800 DRM_ERROR("Failed hw init on reset %d\n", ret);
801 return ret;
802 }
Daniel Vetterf8175862012-04-10 15:50:11 +0200803
Ben Gamari11ed50e2009-09-14 17:48:45 -0400804 drm_irq_uninstall(dev);
805 drm_irq_install(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +0100806 intel_hpd_init(dev);
Daniel Vetterbcbc3242012-04-27 15:17:41 +0200807 } else {
808 mutex_unlock(&dev->struct_mutex);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400809 }
810
Ben Gamari11ed50e2009-09-14 17:48:45 -0400811 return 0;
812}
813
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -0800814static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500815{
Daniel Vetter01a06852012-06-25 15:58:49 +0200816 struct intel_device_info *intel_info =
817 (struct intel_device_info *) ent->driver_data;
818
Ben Widawskyb833d682013-08-23 16:00:07 -0700819 if (IS_PRELIMINARY_HW(intel_info) && !i915_preliminary_hw_support) {
820 DRM_INFO("This hardware requires preliminary hardware support.\n"
821 "See CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT, and/or modparam preliminary_hw_support\n");
822 return -ENODEV;
823 }
824
Chris Wilson5fe49d82011-02-01 19:43:02 +0000825 /* Only bind to function 0 of the device. Early generations
826 * used function 1 as a placeholder for multi-head. This causes
827 * us confusion instead, especially on the systems where both
828 * functions have the same PCI-ID!
829 */
830 if (PCI_FUNC(pdev->devfn))
831 return -ENODEV;
832
Daniel Vetter3bb6ce62013-11-13 22:14:16 +0100833 driver.driver_features &= ~(DRIVER_USE_AGP | DRIVER_REQUIRE_AGP);
Daniel Vetter01a06852012-06-25 15:58:49 +0200834
Jordan Crousedcdb1672010-05-27 13:40:25 -0600835 return drm_get_pci_dev(pdev, ent, &driver);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500836}
837
838static void
839i915_pci_remove(struct pci_dev *pdev)
840{
841 struct drm_device *dev = pci_get_drvdata(pdev);
842
843 drm_put_dev(dev);
844}
845
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100846static int i915_pm_suspend(struct device *dev)
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500847{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100848 struct pci_dev *pdev = to_pci_dev(dev);
849 struct drm_device *drm_dev = pci_get_drvdata(pdev);
850 int error;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500851
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100852 if (!drm_dev || !drm_dev->dev_private) {
853 dev_err(dev, "DRM not initialized, aborting suspend.\n");
854 return -ENODEV;
855 }
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500856
Dave Airlie5bcf7192010-12-07 09:20:40 +1000857 if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
858 return 0;
859
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100860 error = i915_drm_freeze(drm_dev);
861 if (error)
862 return error;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500863
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100864 pci_disable_device(pdev);
865 pci_set_power_state(pdev, PCI_D3hot);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800866
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800867 return 0;
868}
869
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100870static int i915_pm_resume(struct device *dev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800871{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100872 struct pci_dev *pdev = to_pci_dev(dev);
873 struct drm_device *drm_dev = pci_get_drvdata(pdev);
874
875 return i915_resume(drm_dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800876}
877
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100878static int i915_pm_freeze(struct device *dev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800879{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100880 struct pci_dev *pdev = to_pci_dev(dev);
881 struct drm_device *drm_dev = pci_get_drvdata(pdev);
882
883 if (!drm_dev || !drm_dev->dev_private) {
884 dev_err(dev, "DRM not initialized, aborting suspend.\n");
885 return -ENODEV;
886 }
887
888 return i915_drm_freeze(drm_dev);
889}
890
891static int i915_pm_thaw(struct device *dev)
892{
893 struct pci_dev *pdev = to_pci_dev(dev);
894 struct drm_device *drm_dev = pci_get_drvdata(pdev);
895
896 return i915_drm_thaw(drm_dev);
897}
898
899static int i915_pm_poweroff(struct device *dev)
900{
901 struct pci_dev *pdev = to_pci_dev(dev);
902 struct drm_device *drm_dev = pci_get_drvdata(pdev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100903
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100904 return i915_drm_freeze(drm_dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800905}
906
Chris Wilsonb4b78d12010-06-06 15:40:20 +0100907static const struct dev_pm_ops i915_pm_ops = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400908 .suspend = i915_pm_suspend,
909 .resume = i915_pm_resume,
910 .freeze = i915_pm_freeze,
911 .thaw = i915_pm_thaw,
912 .poweroff = i915_pm_poweroff,
913 .restore = i915_pm_resume,
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800914};
915
Laurent Pinchart78b68552012-05-17 13:27:22 +0200916static const struct vm_operations_struct i915_gem_vm_ops = {
Jesse Barnesde151cf2008-11-12 10:03:55 -0800917 .fault = i915_gem_fault,
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800918 .open = drm_gem_vm_open,
919 .close = drm_gem_vm_close,
Jesse Barnesde151cf2008-11-12 10:03:55 -0800920};
921
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700922static const struct file_operations i915_driver_fops = {
923 .owner = THIS_MODULE,
924 .open = drm_open,
925 .release = drm_release,
926 .unlocked_ioctl = drm_ioctl,
927 .mmap = drm_gem_mmap,
928 .poll = drm_poll,
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700929 .read = drm_read,
930#ifdef CONFIG_COMPAT
931 .compat_ioctl = i915_compat_ioctl,
932#endif
933 .llseek = noop_llseek,
934};
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936static struct drm_driver driver = {
Michael Witten0c547812011-08-25 17:55:54 +0000937 /* Don't use MTRRs here; the Xserver or userspace app should
938 * deal with them for Intel hardware.
Dave Airlie792d2b92005-11-11 23:30:27 +1100939 */
Eric Anholt673a3942008-07-30 12:06:12 -0700940 .driver_features =
Daniel Vetter28185642013-08-08 15:41:27 +0200941 DRIVER_USE_AGP | DRIVER_REQUIRE_AGP |
Kristian Høgsberg10ba5012013-08-25 18:29:01 +0200942 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME |
943 DRIVER_RENDER,
Dave Airlie22eae942005-11-10 22:16:34 +1100944 .load = i915_driver_load,
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000945 .unload = i915_driver_unload,
Eric Anholt673a3942008-07-30 12:06:12 -0700946 .open = i915_driver_open,
Dave Airlie22eae942005-11-10 22:16:34 +1100947 .lastclose = i915_driver_lastclose,
948 .preclose = i915_driver_preclose,
Eric Anholt673a3942008-07-30 12:06:12 -0700949 .postclose = i915_driver_postclose,
Rafael J. Wysockid8e29202010-01-09 00:45:33 +0100950
951 /* Used in place of i915_pm_ops for non-DRIVER_MODESET */
952 .suspend = i915_suspend,
953 .resume = i915_resume,
954
Dave Airliecda17382005-07-10 17:31:26 +1000955 .device_is_agp = i915_driver_device_is_agp,
Dave Airlie7c1c2872008-11-28 14:22:24 +1000956 .master_create = i915_master_create,
957 .master_destroy = i915_master_destroy,
Ben Gamari955b12d2009-02-17 20:08:49 -0500958#if defined(CONFIG_DEBUG_FS)
Ben Gamari27c202a2009-07-01 22:26:52 -0400959 .debugfs_init = i915_debugfs_init,
960 .debugfs_cleanup = i915_debugfs_cleanup,
Ben Gamari955b12d2009-02-17 20:08:49 -0500961#endif
Eric Anholt673a3942008-07-30 12:06:12 -0700962 .gem_free_object = i915_gem_free_object,
Jesse Barnesde151cf2008-11-12 10:03:55 -0800963 .gem_vm_ops = &i915_gem_vm_ops,
Daniel Vetter1286ff72012-05-10 15:25:09 +0200964
965 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
966 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
967 .gem_prime_export = i915_gem_prime_export,
968 .gem_prime_import = i915_gem_prime_import,
969
Dave Airlieff72145b2011-02-07 12:16:14 +1000970 .dumb_create = i915_gem_dumb_create,
971 .dumb_map_offset = i915_gem_mmap_gtt,
Daniel Vetter43387b32013-07-16 09:12:04 +0200972 .dumb_destroy = drm_gem_dumb_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 .ioctls = i915_ioctls,
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700974 .fops = &i915_driver_fops,
Dave Airlie22eae942005-11-10 22:16:34 +1100975 .name = DRIVER_NAME,
976 .desc = DRIVER_DESC,
977 .date = DRIVER_DATE,
978 .major = DRIVER_MAJOR,
979 .minor = DRIVER_MINOR,
980 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981};
982
Dave Airlie8410ea32010-12-15 03:16:38 +1000983static struct pci_driver i915_pci_driver = {
984 .name = DRIVER_NAME,
985 .id_table = pciidlist,
986 .probe = i915_pci_probe,
987 .remove = i915_pci_remove,
988 .driver.pm = &i915_pm_ops,
989};
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991static int __init i915_init(void)
992{
993 driver.num_ioctls = i915_max_ioctl;
Jesse Barnes79e53942008-11-07 14:24:08 -0800994
995 /*
996 * If CONFIG_DRM_I915_KMS is set, default to KMS unless
997 * explicitly disabled with the module pararmeter.
998 *
999 * Otherwise, just follow the parameter (defaulting to off).
1000 *
1001 * Allow optional vga_text_mode_force boot option to override
1002 * the default behavior.
1003 */
1004#if defined(CONFIG_DRM_I915_KMS)
1005 if (i915_modeset != 0)
1006 driver.driver_features |= DRIVER_MODESET;
1007#endif
1008 if (i915_modeset == 1)
1009 driver.driver_features |= DRIVER_MODESET;
1010
1011#ifdef CONFIG_VGA_CONSOLE
1012 if (vgacon_text_force() && i915_modeset == -1)
1013 driver.driver_features &= ~DRIVER_MODESET;
1014#endif
1015
Daniel Vetterb30324a2013-11-13 22:11:25 +01001016 if (!(driver.driver_features & DRIVER_MODESET)) {
Chris Wilson3885c6b2011-01-23 10:45:14 +00001017 driver.get_vblank_timestamp = NULL;
Daniel Vetterb30324a2013-11-13 22:11:25 +01001018#ifndef CONFIG_DRM_I915_UMS
1019 /* Silently fail loading to not upset userspace. */
1020 return 0;
1021#endif
1022 }
Chris Wilson3885c6b2011-01-23 10:45:14 +00001023
Dave Airlie8410ea32010-12-15 03:16:38 +10001024 return drm_pci_init(&driver, &i915_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
1027static void __exit i915_exit(void)
1028{
Daniel Vetterb33ecdd2013-11-15 17:16:33 +01001029#ifndef CONFIG_DRM_I915_UMS
1030 if (!(driver.driver_features & DRIVER_MODESET))
1031 return; /* Never loaded a driver. */
1032#endif
1033
Dave Airlie8410ea32010-12-15 03:16:38 +10001034 drm_pci_exit(&driver, &i915_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
1037module_init(i915_init);
1038module_exit(i915_exit);
1039
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001040MODULE_AUTHOR(DRIVER_AUTHOR);
1041MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042MODULE_LICENSE("GPL and additional rights");