blob: ec7bb0fc71bcfc8c19c2231c9bb0e3165f89e047 [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;
Ben Widawskyfae0ce12013-12-17 15:06:42 -080062module_param_named(semaphores, i915_semaphores, int, 0400);
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 Packard72bbe582011-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,
119 "Enable PPGTT (default: true)");
120
Rodrigo Vivi105b7c12013-07-11 18:45:02 -0300121int i915_enable_psr __read_mostly = 0;
122module_param_named(enable_psr, i915_enable_psr, int, 0600);
123MODULE_PARM_DESC(enable_psr, "Enable PSR (default: false)");
124
Josh Triplett99486b82013-08-13 16:23:17 -0700125unsigned int i915_preliminary_hw_support __read_mostly = IS_ENABLED(CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT);
Rodrigo Vivi0a3af262012-10-15 17:16:23 -0300126module_param_named(preliminary_hw_support, i915_preliminary_hw_support, int, 0600);
127MODULE_PARM_DESC(preliminary_hw_support,
Josh Triplett99486b82013-08-13 16:23:17 -0700128 "Enable preliminary hardware support.");
Rodrigo Vivi0a3af262012-10-15 17:16:23 -0300129
Paulo Zanonibf51d5e2013-07-03 17:12:13 -0300130int i915_disable_power_well __read_mostly = 1;
Paulo Zanoni2124b722013-03-22 14:07:23 -0300131module_param_named(disable_power_well, i915_disable_power_well, int, 0600);
132MODULE_PARM_DESC(disable_power_well,
Paulo Zanonibf51d5e2013-07-03 17:12:13 -0300133 "Disable the power well when possible (default: true)");
Paulo Zanoni2124b722013-03-22 14:07:23 -0300134
Paulo Zanoni3c4ca582013-05-31 16:33:23 -0300135int i915_enable_ips __read_mostly = 1;
136module_param_named(enable_ips, i915_enable_ips, int, 0600);
137MODULE_PARM_DESC(enable_ips, "Enable IPS (default: true)");
138
Jesse Barnes2385bdf2013-06-26 01:38:15 +0300139bool i915_fastboot __read_mostly = 0;
140module_param_named(fastboot, i915_fastboot, bool, 0600);
141MODULE_PARM_DESC(fastboot, "Try to skip unnecessary mode sets at boot time "
142 "(default: false)");
143
Paulo Zanonie27e9702013-08-19 13:18:12 -0300144int i915_enable_pc8 __read_mostly = 1;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300145module_param_named(enable_pc8, i915_enable_pc8, int, 0600);
Paulo Zanonie27e9702013-08-19 13:18:12 -0300146MODULE_PARM_DESC(enable_pc8, "Enable support for low power package C states (PC8+) (default: true)");
Paulo Zanonic67a4702013-08-19 13:18:09 -0300147
Paulo Zanoni90058742013-08-19 13:18:11 -0300148int i915_pc8_timeout __read_mostly = 5000;
149module_param_named(pc8_timeout, i915_pc8_timeout, int, 0600);
150MODULE_PARM_DESC(pc8_timeout, "Number of msecs of idleness required to enter PC8+ (default: 5000)");
151
Xiong Zhang0b74b502013-07-19 13:51:24 +0800152bool i915_prefault_disable __read_mostly;
153module_param_named(prefault_disable, i915_prefault_disable, bool, 0600);
154MODULE_PARM_DESC(prefault_disable,
155 "Disable page prefaulting for pread/pwrite/reloc (default:false). For developers only.");
156
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500157static struct drm_driver driver;
158
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200159static const struct intel_device_info intel_i830_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700160 .gen = 2, .is_mobile = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100161 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700162 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500163};
164
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200165static const struct intel_device_info intel_845g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700166 .gen = 2, .num_pipes = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100167 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700168 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500169};
170
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200171static const struct intel_device_info intel_i85x_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700172 .gen = 2, .is_i85x = 1, .is_mobile = 1, .num_pipes = 2,
Adam Jackson5ce8ba72010-04-15 14:03:30 -0400173 .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100174 .has_overlay = 1, .overlay_needs_physical = 1,
Ville Syrjäläfd70d522013-11-28 17:30:02 +0200175 .has_fbc = 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,
Ville Syrjäläfd70d522013-11-28 17:30:02 +0200195 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700196 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500197};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200198static const struct intel_device_info intel_i945g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700199 .gen = 3, .has_hotplug = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100200 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700201 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500202};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200203static const struct intel_device_info intel_i945gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700204 .gen = 3, .is_i945gm = 1, .is_mobile = 1, .num_pipes = 2,
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -0500205 .has_hotplug = 1, .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100206 .has_overlay = 1, .overlay_needs_physical = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100207 .supports_tv = 1,
Ville Syrjäläfd70d522013-11-28 17:30:02 +0200208 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700209 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500210};
211
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200212static const struct intel_device_info intel_i965g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700213 .gen = 4, .is_broadwater = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100214 .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100215 .has_overlay = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700216 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500217};
218
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200219static const struct intel_device_info intel_i965gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700220 .gen = 4, .is_crestline = 1, .num_pipes = 2,
Chris Wilsone3c4e5d2010-12-05 16:49:51 +0000221 .is_mobile = 1, .has_fbc = 1, .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100222 .has_overlay = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100223 .supports_tv = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700224 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500225};
226
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200227static const struct intel_device_info intel_g33_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700228 .gen = 3, .is_g33 = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100229 .need_gfx_hws = 1, .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100230 .has_overlay = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700231 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500232};
233
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200234static const struct intel_device_info intel_g45_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700235 .gen = 4, .is_g4x = 1, .need_gfx_hws = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100236 .has_pipe_cxsr = 1, .has_hotplug = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700237 .ring_mask = RENDER_RING | BSD_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500238};
239
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200240static const struct intel_device_info intel_gm45_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700241 .gen = 4, .is_g4x = 1, .num_pipes = 2,
Chris Wilsone3c4e5d2010-12-05 16:49:51 +0000242 .is_mobile = 1, .need_gfx_hws = 1, .has_fbc = 1,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100243 .has_pipe_cxsr = 1, .has_hotplug = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100244 .supports_tv = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700245 .ring_mask = RENDER_RING | BSD_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500246};
247
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200248static const struct intel_device_info intel_pineview_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700249 .gen = 3, .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100250 .need_gfx_hws = 1, .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100251 .has_overlay = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500252};
253
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200254static const struct intel_device_info intel_ironlake_d_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700255 .gen = 5, .num_pipes = 2,
Eugeni Dodonov5a117db2012-01-05 09:34:29 -0200256 .need_gfx_hws = 1, .has_hotplug = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700257 .ring_mask = RENDER_RING | BSD_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500258};
259
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200260static const struct intel_device_info intel_ironlake_m_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700261 .gen = 5, .is_mobile = 1, .num_pipes = 2,
Chris Wilsone3c4e5d2010-12-05 16:49:51 +0000262 .need_gfx_hws = 1, .has_hotplug = 1,
Jesse Barnesc1a9f042011-05-05 15:24:21 -0700263 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700264 .ring_mask = RENDER_RING | BSD_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500265};
266
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200267static const struct intel_device_info intel_sandybridge_d_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700268 .gen = 6, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100269 .need_gfx_hws = 1, .has_hotplug = 1,
Ville Syrjäläcbaef0f2013-11-06 23:02:24 +0200270 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700271 .ring_mask = RENDER_RING | BSD_RING | BLT_RING,
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200272 .has_llc = 1,
Eric Anholtf6e450a2009-11-02 12:08:22 -0800273};
274
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200275static const struct intel_device_info intel_sandybridge_m_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700276 .gen = 6, .is_mobile = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100277 .need_gfx_hws = 1, .has_hotplug = 1,
Yuanhan Liu9c04f012010-12-15 15:42:32 +0800278 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700279 .ring_mask = RENDER_RING | BSD_RING | BLT_RING,
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200280 .has_llc = 1,
Eric Anholta13e4092010-01-07 15:08:18 -0800281};
282
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700283#define GEN7_FEATURES \
284 .gen = 7, .num_pipes = 3, \
285 .need_gfx_hws = 1, .has_hotplug = 1, \
Ville Syrjäläcbaef0f2013-11-06 23:02:24 +0200286 .has_fbc = 1, \
Ben Widawsky73ae4782013-10-15 10:02:57 -0700287 .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
Ben Widawskyab484f82013-10-05 17:57:11 -0700288 .has_llc = 1
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700289
Jesse Barnesc76b6152011-04-28 14:32:07 -0700290static const struct intel_device_info intel_ivybridge_d_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700291 GEN7_FEATURES,
292 .is_ivybridge = 1,
Jesse Barnesc76b6152011-04-28 14:32:07 -0700293};
294
295static const struct intel_device_info intel_ivybridge_m_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700296 GEN7_FEATURES,
297 .is_ivybridge = 1,
298 .is_mobile = 1,
Jesse Barnesc76b6152011-04-28 14:32:07 -0700299};
300
Ben Widawsky999bcde2013-04-05 13:12:45 -0700301static const struct intel_device_info intel_ivybridge_q_info = {
302 GEN7_FEATURES,
303 .is_ivybridge = 1,
304 .num_pipes = 0, /* legal, last one wins */
305};
306
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700307static const struct intel_device_info intel_valleyview_m_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700308 GEN7_FEATURES,
309 .is_mobile = 1,
310 .num_pipes = 2,
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700311 .is_valleyview = 1,
Ville Syrjäläfba5d532013-01-24 15:29:56 +0200312 .display_mmio_offset = VLV_DISPLAY_BASE,
Ville Syrjäläcbaef0f2013-11-06 23:02:24 +0200313 .has_fbc = 0, /* legal, last one wins */
Ben Widawsky30ccd962013-04-15 21:48:03 -0700314 .has_llc = 0, /* legal, last one wins */
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700315};
316
317static const struct intel_device_info intel_valleyview_d_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700318 GEN7_FEATURES,
319 .num_pipes = 2,
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700320 .is_valleyview = 1,
Ville Syrjäläfba5d532013-01-24 15:29:56 +0200321 .display_mmio_offset = VLV_DISPLAY_BASE,
Ville Syrjäläcbaef0f2013-11-06 23:02:24 +0200322 .has_fbc = 0, /* legal, last one wins */
Ben Widawsky30ccd962013-04-15 21:48:03 -0700323 .has_llc = 0, /* legal, last one wins */
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700324};
325
Eugeni Dodonov4cae9ae2012-03-29 12:32:18 -0300326static const struct intel_device_info intel_haswell_d_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700327 GEN7_FEATURES,
328 .is_haswell = 1,
Damien Lespiaudd93be52013-04-22 18:40:39 +0100329 .has_ddi = 1,
Damien Lespiau30568c42013-04-22 18:40:41 +0100330 .has_fpga_dbg = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700331 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
Eugeni Dodonov4cae9ae2012-03-29 12:32:18 -0300332};
333
334static const struct intel_device_info intel_haswell_m_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700335 GEN7_FEATURES,
336 .is_haswell = 1,
337 .is_mobile = 1,
Damien Lespiaudd93be52013-04-22 18:40:39 +0100338 .has_ddi = 1,
Damien Lespiau30568c42013-04-22 18:40:41 +0100339 .has_fpga_dbg = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700340 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500341};
342
Ben Widawsky4d4dead2013-11-03 16:47:33 -0800343static const struct intel_device_info intel_broadwell_d_info = {
Damien Lespiau4b305532013-11-02 21:07:32 -0700344 .gen = 8, .num_pipes = 3,
Ben Widawsky4d4dead2013-11-03 16:47:33 -0800345 .need_gfx_hws = 1, .has_hotplug = 1,
346 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
347 .has_llc = 1,
348 .has_ddi = 1,
349};
350
351static const struct intel_device_info intel_broadwell_m_info = {
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;
Imre Deakbcdb72a2014-02-14 20:23:54 +0200406 struct pci_dev *pch = NULL;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800407
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 */
Imre Deakbcdb72a2014-02-14 20:23:54 +0200427 while ((pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, pch))) {
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800428 if (pch->vendor == PCI_VENDOR_ID_INTEL) {
Imre Deakbcdb72a2014-02-14 20:23:54 +0200429 unsigned short id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
Paulo Zanoni17a303e2012-11-20 15:12:07 -0200430 dev_priv->pch_id = id;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800431
Jesse Barnes90711d52011-04-28 14:48:02 -0700432 if (id == INTEL_PCH_IBX_DEVICE_ID_TYPE) {
433 dev_priv->pch_type = PCH_IBX;
434 DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100435 WARN_ON(!IS_GEN5(dev));
Jesse Barnes90711d52011-04-28 14:48:02 -0700436 } else if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800437 dev_priv->pch_type = PCH_CPT;
438 DRM_DEBUG_KMS("Found CougarPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100439 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
Jesse Barnesc7925132011-04-07 12:33:56 -0700440 } else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
441 /* PantherPoint is CPT compatible */
442 dev_priv->pch_type = PCH_CPT;
Jani Nikula492ab662013-10-01 12:12:33 +0300443 DRM_DEBUG_KMS("Found PantherPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100444 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
Eugeni Dodonoveb877eb2012-03-29 12:32:20 -0300445 } else if (id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
446 dev_priv->pch_type = PCH_LPT;
447 DRM_DEBUG_KMS("Found LynxPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100448 WARN_ON(!IS_HASWELL(dev));
Paulo Zanoni08e14132013-04-12 18:16:54 -0300449 WARN_ON(IS_ULT(dev));
Paulo Zanoni018f52c2013-11-02 21:07:35 -0700450 } else if (IS_BROADWELL(dev)) {
451 dev_priv->pch_type = PCH_LPT;
452 dev_priv->pch_id =
453 INTEL_PCH_LPT_LP_DEVICE_ID_TYPE;
454 DRM_DEBUG_KMS("This is Broadwell, assuming "
455 "LynxPoint LP PCH\n");
Ben Widawskye76e0632013-11-07 21:40:41 -0800456 } else if (id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
457 dev_priv->pch_type = PCH_LPT;
458 DRM_DEBUG_KMS("Found LynxPoint LP PCH\n");
459 WARN_ON(!IS_HASWELL(dev));
460 WARN_ON(!IS_ULT(dev));
Imre Deakbcdb72a2014-02-14 20:23:54 +0200461 } else
462 continue;
463
Rui Guo6a9c4b32013-06-19 21:10:23 +0800464 break;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800465 }
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800466 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800467 if (!pch)
Imre Deakbcdb72a2014-02-14 20:23:54 +0200468 DRM_DEBUG_KMS("No PCH found.\n");
469
470 pci_dev_put(pch);
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800471}
472
Ben Widawsky2911a352012-04-05 14:47:36 -0700473bool i915_semaphore_is_enabled(struct drm_device *dev)
474{
475 if (INTEL_INFO(dev)->gen < 6)
Daniel Vettera08acaf2013-12-17 09:56:53 +0100476 return false;
Ben Widawsky2911a352012-04-05 14:47:36 -0700477
Ben Widawskye64c4a12013-11-04 19:45:44 -0800478 /* Until we get further testing... */
479 if (IS_GEN8(dev)) {
480 WARN_ON(!i915_preliminary_hw_support);
Daniel Vettera08acaf2013-12-17 09:56:53 +0100481 return false;
Ben Widawskye64c4a12013-11-04 19:45:44 -0800482 }
483
Ben Widawsky2911a352012-04-05 14:47:36 -0700484 if (i915_semaphores >= 0)
485 return i915_semaphores;
486
Daniel Vetter59de3292012-04-02 20:48:43 +0200487#ifdef CONFIG_INTEL_IOMMU
Ben Widawsky2911a352012-04-05 14:47:36 -0700488 /* Enable semaphores on SNB when IO remapping is off */
Daniel Vetter59de3292012-04-02 20:48:43 +0200489 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
490 return false;
491#endif
Ben Widawsky2911a352012-04-05 14:47:36 -0700492
Daniel Vettera08acaf2013-12-17 09:56:53 +0100493 return true;
Ben Widawsky2911a352012-04-05 14:47:36 -0700494}
495
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100496static int i915_drm_freeze(struct drm_device *dev)
497{
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100498 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes24576d22013-03-26 09:25:45 -0700499 struct drm_crtc *crtc;
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100500
Paulo Zanoni8a187452013-12-06 20:32:13 -0200501 intel_runtime_pm_get(dev_priv);
502
Zhang Ruib8efb172013-02-05 15:41:53 +0800503 /* ignore lid events during suspend */
504 mutex_lock(&dev_priv->modeset_restore_lock);
505 dev_priv->modeset_restore = MODESET_SUSPENDED;
506 mutex_unlock(&dev_priv->modeset_restore_lock);
507
Paulo Zanonic67a4702013-08-19 13:18:09 -0300508 /* We do a lot of poking in a lot of registers, make sure they work
509 * properly. */
510 hsw_disable_package_c8(dev_priv);
Imre Deakbaa70702013-10-25 17:36:48 +0300511 intel_display_set_init_power(dev, true);
Paulo Zanonicb107992013-01-25 16:59:15 -0200512
Dave Airlie5bcf7192010-12-07 09:20:40 +1000513 drm_kms_helper_poll_disable(dev);
514
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100515 pci_save_state(dev->pdev);
516
517 /* If KMS is active, we do the leavevt stuff here */
518 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200519 int error;
520
Chris Wilson45c5f202013-10-16 11:50:01 +0100521 error = i915_gem_suspend(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100522 if (error) {
523 dev_err(&dev->pdev->dev,
524 "GEM idle failed, resume might fail\n");
525 return error;
526 }
Daniel Vettera261b242012-07-26 19:21:47 +0200527
Jesse Barnes1a01ab32012-11-02 11:14:00 -0700528 cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
529
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100530 drm_irq_uninstall(dev);
Daniel Vetter15239092013-03-05 09:50:58 +0100531 dev_priv->enable_hotplug_processing = false;
Jesse Barnes24576d22013-03-26 09:25:45 -0700532 /*
533 * Disable CRTCs directly since we want to preserve sw state
534 * for _thaw.
535 */
Jesse Barnes7c063c72013-11-26 09:13:41 -0800536 mutex_lock(&dev->mode_config.mutex);
Jesse Barnes24576d22013-03-26 09:25:45 -0700537 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
538 dev_priv->display.crtc_disable(crtc);
Jesse Barnes7c063c72013-11-26 09:13:41 -0800539 mutex_unlock(&dev->mode_config.mutex);
Imre Deak7d708ee2013-04-17 14:04:50 +0300540
541 intel_modeset_suspend_hw(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100542 }
543
Ben Widawsky828c7902013-10-16 09:21:30 -0700544 i915_gem_suspend_gtt_mappings(dev);
545
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100546 i915_save_state(dev);
547
Chris Wilson44834a62010-08-19 16:09:23 +0100548 intel_opregion_fini(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100549
Dave Airlie3fa016a2012-03-28 10:48:49 +0100550 console_lock();
Damien Lespiaub6f3eff2013-06-10 15:48:09 +0100551 intel_fbdev_set_suspend(dev, FBINFO_STATE_SUSPENDED);
Dave Airlie3fa016a2012-03-28 10:48:49 +0100552 console_unlock();
553
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100554 return 0;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100555}
556
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000557int i915_suspend(struct drm_device *dev, pm_message_t state)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100558{
559 int error;
560
561 if (!dev || !dev->dev_private) {
562 DRM_ERROR("dev: %p\n", dev);
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700563 DRM_ERROR("DRM not initialized, aborting suspend.\n");
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000564 return -ENODEV;
565 }
566
Dave Airlieb932ccb2008-02-20 10:02:20 +1000567 if (state.event == PM_EVENT_PRETHAW)
568 return 0;
569
Dave Airlie5bcf7192010-12-07 09:20:40 +1000570
571 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
572 return 0;
Chris Wilson6eecba32010-09-08 09:45:11 +0100573
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100574 error = i915_drm_freeze(dev);
575 if (error)
576 return error;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000577
Dave Airlieb932ccb2008-02-20 10:02:20 +1000578 if (state.event == PM_EVENT_SUSPEND) {
579 /* Shut down the device */
580 pci_disable_device(dev->pdev);
581 pci_set_power_state(dev->pdev, PCI_D3hot);
582 }
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000583
584 return 0;
585}
586
Jesse Barnes073f34d2012-11-02 11:13:59 -0700587void intel_console_resume(struct work_struct *work)
588{
589 struct drm_i915_private *dev_priv =
590 container_of(work, struct drm_i915_private,
591 console_resume_work);
592 struct drm_device *dev = dev_priv->dev;
593
594 console_lock();
Damien Lespiaub6f3eff2013-06-10 15:48:09 +0100595 intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING);
Jesse Barnes073f34d2012-11-02 11:13:59 -0700596 console_unlock();
597}
598
Jesse Barnesbb60b962013-03-26 09:25:46 -0700599static void intel_resume_hotplug(struct drm_device *dev)
600{
601 struct drm_mode_config *mode_config = &dev->mode_config;
602 struct intel_encoder *encoder;
603
604 mutex_lock(&mode_config->mutex);
605 DRM_DEBUG_KMS("running encoder hotplug functions\n");
606
607 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
608 if (encoder->hot_plug)
609 encoder->hot_plug(encoder);
610
611 mutex_unlock(&mode_config->mutex);
612
613 /* Just fire off a uevent and let userspace tell us what to do */
614 drm_helper_hpd_irq_event(dev);
615}
616
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300617static int __i915_drm_thaw(struct drm_device *dev, bool restore_gtt_mappings)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000618{
Jesse Barnes5669fca2009-02-17 15:13:31 -0800619 struct drm_i915_private *dev_priv = dev->dev_private;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100620 int error = 0;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100621
Ville Syrjäläc9f7fbf2013-09-16 17:38:36 +0300622 intel_uncore_early_sanitize(dev);
623
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300624 intel_uncore_sanitize(dev);
625
626 if (drm_core_check_feature(dev, DRIVER_MODESET) &&
627 restore_gtt_mappings) {
628 mutex_lock(&dev->struct_mutex);
629 i915_gem_restore_gtt_mappings(dev);
630 mutex_unlock(&dev->struct_mutex);
631 }
632
Imre Deakddb642f2013-10-28 17:20:35 +0200633 intel_power_domains_init_hw(dev);
Ville Syrjäläebdcefc2013-09-16 17:38:35 +0300634
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100635 i915_restore_state(dev);
Chris Wilson44834a62010-08-19 16:09:23 +0100636 intel_opregion_setup(dev);
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100637
Jesse Barnes5669fca2009-02-17 15:13:31 -0800638 /* KMS EnterVT equivalent */
639 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Paulo Zanonidde86e22012-12-01 12:04:25 -0200640 intel_init_pch_refclk(dev);
Chris Wilson1833b132012-05-09 11:56:28 +0100641
Jesse Barnes5669fca2009-02-17 15:13:31 -0800642 mutex_lock(&dev->struct_mutex);
Jesse Barnes5669fca2009-02-17 15:13:31 -0800643
Daniel Vetterf691e2f2012-02-02 09:58:12 +0100644 error = i915_gem_init_hw(dev);
Jesse Barnes5669fca2009-02-17 15:13:31 -0800645 mutex_unlock(&dev->struct_mutex);
Jesse Barnes226485e2009-02-23 15:41:09 -0800646
Daniel Vetter15239092013-03-05 09:50:58 +0100647 /* We need working interrupts for modeset enabling ... */
648 drm_irq_install(dev);
649
Chris Wilson1833b132012-05-09 11:56:28 +0100650 intel_modeset_init_hw(dev);
Jesse Barnes24576d22013-03-26 09:25:45 -0700651
652 drm_modeset_lock_all(dev);
Chris Wilsonedd5b132013-12-02 17:39:09 +0000653 drm_mode_config_reset(dev);
Jesse Barnes24576d22013-03-26 09:25:45 -0700654 intel_modeset_setup_hw_state(dev, true);
655 drm_modeset_unlock_all(dev);
Daniel Vetter15239092013-03-05 09:50:58 +0100656
657 /*
658 * ... but also need to make sure that hotplug processing
659 * doesn't cause havoc. Like in the driver load code we don't
660 * bother with the tiny race here where we might loose hotplug
661 * notifications.
662 * */
Daniel Vetter20afbda2012-12-11 14:05:07 +0100663 intel_hpd_init(dev);
Daniel Vetter15239092013-03-05 09:50:58 +0100664 dev_priv->enable_hotplug_processing = true;
Jesse Barnesbb60b962013-03-26 09:25:46 -0700665 /* Config may have changed between suspend and resume */
666 intel_resume_hotplug(dev);
Jesse Barnesd5bb0812011-01-05 12:01:26 -0800667 }
Jesse Barnes1daed3f2011-01-05 12:01:25 -0800668
Chris Wilson44834a62010-08-19 16:09:23 +0100669 intel_opregion_init(dev);
670
Jesse Barnes073f34d2012-11-02 11:13:59 -0700671 /*
672 * The console lock can be pretty contented on resume due
673 * to all the printk activity. Try to keep it out of the hot
674 * path of resume if possible.
675 */
676 if (console_trylock()) {
Damien Lespiaub6f3eff2013-06-10 15:48:09 +0100677 intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING);
Jesse Barnes073f34d2012-11-02 11:13:59 -0700678 console_unlock();
679 } else {
680 schedule_work(&dev_priv->console_resume_work);
681 }
682
Paulo Zanonic67a4702013-08-19 13:18:09 -0300683 /* Undo what we did at i915_drm_freeze so the refcount goes back to the
684 * expected level. */
685 hsw_enable_package_c8(dev_priv);
686
Zhang Ruib8efb172013-02-05 15:41:53 +0800687 mutex_lock(&dev_priv->modeset_restore_lock);
688 dev_priv->modeset_restore = MODESET_DONE;
689 mutex_unlock(&dev_priv->modeset_restore_lock);
Paulo Zanoni8a187452013-12-06 20:32:13 -0200690
691 intel_runtime_pm_put(dev_priv);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100692 return error;
693}
694
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700695static int i915_drm_thaw(struct drm_device *dev)
696{
Daniel Vetter7f16e5c2013-11-04 16:28:47 +0100697 if (drm_core_check_feature(dev, DRIVER_MODESET))
Ben Widawsky828c7902013-10-16 09:21:30 -0700698 i915_check_and_clear_faults(dev);
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700699
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300700 return __i915_drm_thaw(dev, true);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100701}
702
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000703int i915_resume(struct drm_device *dev)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100704{
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700705 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6eecba32010-09-08 09:45:11 +0100706 int ret;
707
Dave Airlie5bcf7192010-12-07 09:20:40 +1000708 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
709 return 0;
710
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100711 if (pci_enable_device(dev->pdev))
712 return -EIO;
713
714 pci_set_master(dev->pdev);
715
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700716 /*
717 * Platforms with opregion should have sane BIOS, older ones (gen3 and
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300718 * earlier) need to restore the GTT mappings since the BIOS might clear
719 * all our scratch PTEs.
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700720 */
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300721 ret = __i915_drm_thaw(dev, !dev_priv->opregion.header);
Chris Wilson6eecba32010-09-08 09:45:11 +0100722 if (ret)
723 return ret;
724
725 drm_kms_helper_poll_enable(dev);
726 return 0;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000727}
728
Ben Gamari11ed50e2009-09-14 17:48:45 -0400729/**
Eugeni Dodonovf3953dc2011-11-28 16:15:17 -0200730 * i915_reset - reset chip after a hang
Ben Gamari11ed50e2009-09-14 17:48:45 -0400731 * @dev: drm device to reset
Ben Gamari11ed50e2009-09-14 17:48:45 -0400732 *
733 * Reset the chip. Useful if a hang is detected. Returns zero on successful
734 * reset or otherwise an error code.
735 *
736 * Procedure is fairly simple:
737 * - reset the chip using the reset reg
738 * - re-init context state
739 * - re-init hardware status page
740 * - re-init ring buffer
741 * - re-init interrupt state
742 * - re-init display
743 */
Daniel Vetterd4b8bb22012-04-27 15:17:44 +0200744int i915_reset(struct drm_device *dev)
Ben Gamari11ed50e2009-09-14 17:48:45 -0400745{
746 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100747 bool simulated;
Kenneth Graunke0573ed42010-09-11 03:17:19 -0700748 int ret;
Ben Gamari11ed50e2009-09-14 17:48:45 -0400749
Chris Wilsond78cb502010-12-23 13:33:15 +0000750 if (!i915_try_reset)
751 return 0;
752
Daniel Vetterd54a02c2012-07-04 22:18:39 +0200753 mutex_lock(&dev->struct_mutex);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400754
Chris Wilson069efc12010-09-30 16:53:18 +0100755 i915_gem_reset(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400756
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100757 simulated = dev_priv->gpu_error.stop_rings != 0;
758
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300759 ret = intel_gpu_reset(dev);
Daniel Vetter350d2702012-04-27 15:17:42 +0200760
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300761 /* Also reset the gpu hangman. */
762 if (simulated) {
763 DRM_INFO("Simulated gpu hang, resetting stop_rings\n");
764 dev_priv->gpu_error.stop_rings = 0;
765 if (ret == -ENODEV) {
Daniel Vetterf2d91a22013-11-07 09:48:57 +0100766 DRM_INFO("Reset not implemented, but ignoring "
767 "error for simulated gpu hangs\n");
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300768 ret = 0;
769 }
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100770 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300771
Kenneth Graunke0573ed42010-09-11 03:17:19 -0700772 if (ret) {
Daniel Vetterf2d91a22013-11-07 09:48:57 +0100773 DRM_ERROR("Failed to reset chip: %i\n", ret);
Daniel J Bluemanf953c932010-05-17 14:23:52 +0100774 mutex_unlock(&dev->struct_mutex);
Chris Wilsonf803aa52010-09-19 12:38:26 +0100775 return ret;
Ben Gamari11ed50e2009-09-14 17:48:45 -0400776 }
777
778 /* Ok, now get things going again... */
779
780 /*
781 * Everything depends on having the GTT running, so we need to start
782 * there. Fortunately we don't need to do this unless we reset the
783 * chip at a PCI level.
784 *
785 * Next we need to restore the context, but we don't use those
786 * yet either...
787 *
788 * Ring buffer needs to be re-initialized in the KMS case, or if X
789 * was running at the time of the reset (i.e. we weren't VT
790 * switched away).
791 */
792 if (drm_core_check_feature(dev, DRIVER_MODESET) ||
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200793 !dev_priv->ums.mm_suspended) {
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200794 dev_priv->ums.mm_suspended = 0;
Eric Anholt75a68982010-11-18 09:31:13 +0800795
Ben Widawsky3d57e5b2013-10-14 10:01:36 -0700796 ret = i915_gem_init_hw(dev);
Daniel Vetter8e88a2b2012-06-19 18:40:00 +0200797 mutex_unlock(&dev->struct_mutex);
Ben Widawsky3d57e5b2013-10-14 10:01:36 -0700798 if (ret) {
799 DRM_ERROR("Failed hw init on reset %d\n", ret);
800 return ret;
801 }
Daniel Vetterf8175862012-04-10 15:50:11 +0200802
Ben Gamari11ed50e2009-09-14 17:48:45 -0400803 drm_irq_uninstall(dev);
804 drm_irq_install(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +0100805 intel_hpd_init(dev);
Daniel Vetterbcbc3242012-04-27 15:17:41 +0200806 } else {
807 mutex_unlock(&dev->struct_mutex);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400808 }
809
Ben Gamari11ed50e2009-09-14 17:48:45 -0400810 return 0;
811}
812
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -0800813static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500814{
Daniel Vetter01a06852012-06-25 15:58:49 +0200815 struct intel_device_info *intel_info =
816 (struct intel_device_info *) ent->driver_data;
817
Ben Widawskyb833d682013-08-23 16:00:07 -0700818 if (IS_PRELIMINARY_HW(intel_info) && !i915_preliminary_hw_support) {
819 DRM_INFO("This hardware requires preliminary hardware support.\n"
820 "See CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT, and/or modparam preliminary_hw_support\n");
821 return -ENODEV;
822 }
823
Chris Wilson5fe49d82011-02-01 19:43:02 +0000824 /* Only bind to function 0 of the device. Early generations
825 * used function 1 as a placeholder for multi-head. This causes
826 * us confusion instead, especially on the systems where both
827 * functions have the same PCI-ID!
828 */
829 if (PCI_FUNC(pdev->devfn))
830 return -ENODEV;
831
Daniel Vetter24986ee2013-12-11 11:34:33 +0100832 driver.driver_features &= ~(DRIVER_USE_AGP);
Daniel Vetter01a06852012-06-25 15:58:49 +0200833
Jordan Crousedcdb1672010-05-27 13:40:25 -0600834 return drm_get_pci_dev(pdev, ent, &driver);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500835}
836
837static void
838i915_pci_remove(struct pci_dev *pdev)
839{
840 struct drm_device *dev = pci_get_drvdata(pdev);
841
842 drm_put_dev(dev);
843}
844
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100845static int i915_pm_suspend(struct device *dev)
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500846{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100847 struct pci_dev *pdev = to_pci_dev(dev);
848 struct drm_device *drm_dev = pci_get_drvdata(pdev);
849 int error;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500850
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100851 if (!drm_dev || !drm_dev->dev_private) {
852 dev_err(dev, "DRM not initialized, aborting suspend.\n");
853 return -ENODEV;
854 }
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500855
Dave Airlie5bcf7192010-12-07 09:20:40 +1000856 if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
857 return 0;
858
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100859 error = i915_drm_freeze(drm_dev);
860 if (error)
861 return error;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500862
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100863 pci_disable_device(pdev);
864 pci_set_power_state(pdev, PCI_D3hot);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800865
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800866 return 0;
867}
868
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100869static int i915_pm_resume(struct device *dev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800870{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100871 struct pci_dev *pdev = to_pci_dev(dev);
872 struct drm_device *drm_dev = pci_get_drvdata(pdev);
873
874 return i915_resume(drm_dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800875}
876
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100877static int i915_pm_freeze(struct device *dev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800878{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100879 struct pci_dev *pdev = to_pci_dev(dev);
880 struct drm_device *drm_dev = pci_get_drvdata(pdev);
881
882 if (!drm_dev || !drm_dev->dev_private) {
883 dev_err(dev, "DRM not initialized, aborting suspend.\n");
884 return -ENODEV;
885 }
886
887 return i915_drm_freeze(drm_dev);
888}
889
890static int i915_pm_thaw(struct device *dev)
891{
892 struct pci_dev *pdev = to_pci_dev(dev);
893 struct drm_device *drm_dev = pci_get_drvdata(pdev);
894
895 return i915_drm_thaw(drm_dev);
896}
897
898static int i915_pm_poweroff(struct device *dev)
899{
900 struct pci_dev *pdev = to_pci_dev(dev);
901 struct drm_device *drm_dev = pci_get_drvdata(pdev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100902
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100903 return i915_drm_freeze(drm_dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800904}
905
Paulo Zanoni8a187452013-12-06 20:32:13 -0200906static int i915_runtime_suspend(struct device *device)
907{
908 struct pci_dev *pdev = to_pci_dev(device);
909 struct drm_device *dev = pci_get_drvdata(pdev);
910 struct drm_i915_private *dev_priv = dev->dev_private;
911
912 WARN_ON(!HAS_RUNTIME_PM(dev));
913
914 DRM_DEBUG_KMS("Suspending device\n");
915
Paulo Zanoni48018a52013-12-13 15:22:31 -0200916 i915_gem_release_all_mmaps(dev_priv);
917
Paulo Zanoni16a3d6e2013-12-13 15:22:30 -0200918 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Paulo Zanoni8a187452013-12-06 20:32:13 -0200919 dev_priv->pm.suspended = true;
Kristen Carlson Accardi1fb23622014-01-14 15:36:15 -0800920
921 /*
922 * current versions of firmware which depend on this opregion
923 * notification have repurposed the D1 definition to mean
924 * "runtime suspended" vs. what you would normally expect (D3)
925 * to distinguish it from notifications that might be sent
926 * via the suspend path.
927 */
928 intel_opregion_notify_adapter(dev, PCI_D1);
Paulo Zanoni8a187452013-12-06 20:32:13 -0200929
930 return 0;
931}
932
933static int i915_runtime_resume(struct device *device)
934{
935 struct pci_dev *pdev = to_pci_dev(device);
936 struct drm_device *dev = pci_get_drvdata(pdev);
937 struct drm_i915_private *dev_priv = dev->dev_private;
938
939 WARN_ON(!HAS_RUNTIME_PM(dev));
940
941 DRM_DEBUG_KMS("Resuming device\n");
942
Paulo Zanonicd2e9e92013-12-06 20:34:21 -0200943 intel_opregion_notify_adapter(dev, PCI_D0);
Paulo Zanoni8a187452013-12-06 20:32:13 -0200944 dev_priv->pm.suspended = false;
945
946 return 0;
947}
948
Chris Wilsonb4b78d12010-06-06 15:40:20 +0100949static const struct dev_pm_ops i915_pm_ops = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400950 .suspend = i915_pm_suspend,
951 .resume = i915_pm_resume,
952 .freeze = i915_pm_freeze,
953 .thaw = i915_pm_thaw,
954 .poweroff = i915_pm_poweroff,
955 .restore = i915_pm_resume,
Paulo Zanoni8a187452013-12-06 20:32:13 -0200956 .runtime_suspend = i915_runtime_suspend,
957 .runtime_resume = i915_runtime_resume,
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800958};
959
Laurent Pinchart78b68552012-05-17 13:27:22 +0200960static const struct vm_operations_struct i915_gem_vm_ops = {
Jesse Barnesde151cf2008-11-12 10:03:55 -0800961 .fault = i915_gem_fault,
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800962 .open = drm_gem_vm_open,
963 .close = drm_gem_vm_close,
Jesse Barnesde151cf2008-11-12 10:03:55 -0800964};
965
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700966static const struct file_operations i915_driver_fops = {
967 .owner = THIS_MODULE,
968 .open = drm_open,
969 .release = drm_release,
970 .unlocked_ioctl = drm_ioctl,
971 .mmap = drm_gem_mmap,
972 .poll = drm_poll,
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700973 .read = drm_read,
974#ifdef CONFIG_COMPAT
975 .compat_ioctl = i915_compat_ioctl,
976#endif
977 .llseek = noop_llseek,
978};
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980static struct drm_driver driver = {
Michael Witten0c547812011-08-25 17:55:54 +0000981 /* Don't use MTRRs here; the Xserver or userspace app should
982 * deal with them for Intel hardware.
Dave Airlie792d2b92005-11-11 23:30:27 +1100983 */
Eric Anholt673a3942008-07-30 12:06:12 -0700984 .driver_features =
Daniel Vetter24986ee2013-12-11 11:34:33 +0100985 DRIVER_USE_AGP |
Kristian Høgsberg10ba5012013-08-25 18:29:01 +0200986 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME |
987 DRIVER_RENDER,
Dave Airlie22eae942005-11-10 22:16:34 +1100988 .load = i915_driver_load,
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000989 .unload = i915_driver_unload,
Eric Anholt673a3942008-07-30 12:06:12 -0700990 .open = i915_driver_open,
Dave Airlie22eae942005-11-10 22:16:34 +1100991 .lastclose = i915_driver_lastclose,
992 .preclose = i915_driver_preclose,
Eric Anholt673a3942008-07-30 12:06:12 -0700993 .postclose = i915_driver_postclose,
Rafael J. Wysockid8e29202010-01-09 00:45:33 +0100994
995 /* Used in place of i915_pm_ops for non-DRIVER_MODESET */
996 .suspend = i915_suspend,
997 .resume = i915_resume,
998
Dave Airliecda17382005-07-10 17:31:26 +1000999 .device_is_agp = i915_driver_device_is_agp,
Dave Airlie7c1c2872008-11-28 14:22:24 +10001000 .master_create = i915_master_create,
1001 .master_destroy = i915_master_destroy,
Ben Gamari955b12d2009-02-17 20:08:49 -05001002#if defined(CONFIG_DEBUG_FS)
Ben Gamari27c202a2009-07-01 22:26:52 -04001003 .debugfs_init = i915_debugfs_init,
1004 .debugfs_cleanup = i915_debugfs_cleanup,
Ben Gamari955b12d2009-02-17 20:08:49 -05001005#endif
Eric Anholt673a3942008-07-30 12:06:12 -07001006 .gem_free_object = i915_gem_free_object,
Jesse Barnesde151cf2008-11-12 10:03:55 -08001007 .gem_vm_ops = &i915_gem_vm_ops,
Daniel Vetter1286ff72012-05-10 15:25:09 +02001008
1009 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
1010 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
1011 .gem_prime_export = i915_gem_prime_export,
1012 .gem_prime_import = i915_gem_prime_import,
1013
Dave Airlieff72145b2011-02-07 12:16:14 +10001014 .dumb_create = i915_gem_dumb_create,
1015 .dumb_map_offset = i915_gem_mmap_gtt,
Daniel Vetter43387b32013-07-16 09:12:04 +02001016 .dumb_destroy = drm_gem_dumb_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 .ioctls = i915_ioctls,
Arjan van de Vene08e96d2011-10-31 07:28:57 -07001018 .fops = &i915_driver_fops,
Dave Airlie22eae942005-11-10 22:16:34 +11001019 .name = DRIVER_NAME,
1020 .desc = DRIVER_DESC,
1021 .date = DRIVER_DATE,
1022 .major = DRIVER_MAJOR,
1023 .minor = DRIVER_MINOR,
1024 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025};
1026
Dave Airlie8410ea32010-12-15 03:16:38 +10001027static struct pci_driver i915_pci_driver = {
1028 .name = DRIVER_NAME,
1029 .id_table = pciidlist,
1030 .probe = i915_pci_probe,
1031 .remove = i915_pci_remove,
1032 .driver.pm = &i915_pm_ops,
1033};
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035static int __init i915_init(void)
1036{
1037 driver.num_ioctls = i915_max_ioctl;
Jesse Barnes79e53942008-11-07 14:24:08 -08001038
1039 /*
1040 * If CONFIG_DRM_I915_KMS is set, default to KMS unless
1041 * explicitly disabled with the module pararmeter.
1042 *
1043 * Otherwise, just follow the parameter (defaulting to off).
1044 *
1045 * Allow optional vga_text_mode_force boot option to override
1046 * the default behavior.
1047 */
1048#if defined(CONFIG_DRM_I915_KMS)
1049 if (i915_modeset != 0)
1050 driver.driver_features |= DRIVER_MODESET;
1051#endif
1052 if (i915_modeset == 1)
1053 driver.driver_features |= DRIVER_MODESET;
1054
1055#ifdef CONFIG_VGA_CONSOLE
1056 if (vgacon_text_force() && i915_modeset == -1)
1057 driver.driver_features &= ~DRIVER_MODESET;
1058#endif
1059
Daniel Vetterb30324a2013-11-13 22:11:25 +01001060 if (!(driver.driver_features & DRIVER_MODESET)) {
Chris Wilson3885c6b2011-01-23 10:45:14 +00001061 driver.get_vblank_timestamp = NULL;
Daniel Vetterb30324a2013-11-13 22:11:25 +01001062#ifndef CONFIG_DRM_I915_UMS
1063 /* Silently fail loading to not upset userspace. */
1064 return 0;
1065#endif
1066 }
Chris Wilson3885c6b2011-01-23 10:45:14 +00001067
Dave Airlie8410ea32010-12-15 03:16:38 +10001068 return drm_pci_init(&driver, &i915_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
1071static void __exit i915_exit(void)
1072{
Daniel Vetterb33ecdd2013-11-15 17:16:33 +01001073#ifndef CONFIG_DRM_I915_UMS
1074 if (!(driver.driver_features & DRIVER_MODESET))
1075 return; /* Never loaded a driver. */
1076#endif
1077
Dave Airlie8410ea32010-12-15 03:16:38 +10001078 drm_pci_exit(&driver, &i915_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
1081module_init(i915_init);
1082module_exit(i915_exit);
1083
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001084MODULE_AUTHOR(DRIVER_AUTHOR);
1085MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086MODULE_LICENSE("GPL and additional rights");