blob: 82c46050ebeeb5f55d47a1d2977aa53f9e2a2dc7 [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
Daniel Vettera7269152012-11-20 14:50:08 +010047int i915_panel_ignore_lid __read_mostly = 1;
Chris Wilsonfca87402011-02-17 13:44:48 +000048module_param_named(panel_ignore_lid, i915_panel_ignore_lid, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070049MODULE_PARM_DESC(panel_ignore_lid,
Daniel Vettera7269152012-11-20 14:50:08 +010050 "Override lid status (0=autodetect, 1=autodetect disabled [default], "
51 "-1=force lid closed, -2=force lid open)");
Chris Wilsonfca87402011-02-17 13:44:48 +000052
Ben Widawskya35d9d32011-07-13 14:38:17 -070053unsigned int i915_powersave __read_mostly = 1;
Chris Wilson0aa99272010-11-02 09:20:50 +000054module_param_named(powersave, i915_powersave, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070055MODULE_PARM_DESC(powersave,
56 "Enable powersavings, fbc, downclocking, etc. (default: true)");
Jesse Barnes652c3932009-08-17 13:31:43 -070057
Eugeni Dodonovf45b5552011-12-09 17:16:37 -080058int i915_semaphores __read_mostly = -1;
Ben Widawskyfae0ce12013-12-17 15:06:42 -080059module_param_named(semaphores, i915_semaphores, int, 0400);
Ben Widawsky6e96e772011-07-13 14:38:18 -070060MODULE_PARM_DESC(semaphores,
Eugeni Dodonovf45b5552011-12-09 17:16:37 -080061 "Use semaphores for inter-ring sync (default: -1 (use per-chip defaults))");
Chris Wilsona1656b92011-03-04 18:48:03 +000062
Keith Packardc0f372b32011-11-16 22:24:52 -080063int i915_enable_rc6 __read_mostly = -1;
Jesse Barnesf57f9c12012-04-11 09:39:02 -070064module_param_named(i915_enable_rc6, i915_enable_rc6, int, 0400);
Ben Widawsky6e96e772011-07-13 14:38:18 -070065MODULE_PARM_DESC(i915_enable_rc6,
Eugeni Dodonov83b7f9a2012-03-23 11:57:18 -030066 "Enable power-saving render C-state 6. "
67 "Different stages can be selected via bitmask values "
68 "(0 = disable; 1 = enable rc6; 2 = enable deep rc6; 4 = enable deepest rc6). "
69 "For example, 3 would enable rc6 and deep rc6, and 7 would enable everything. "
70 "default: -1 (use per-chip default)");
Chris Wilsonac668082011-02-09 16:15:32 +000071
Keith Packard4415e632011-11-09 09:57:50 -080072int i915_enable_fbc __read_mostly = -1;
Jesse Barnesc1a9f042011-05-05 15:24:21 -070073module_param_named(i915_enable_fbc, i915_enable_fbc, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070074MODULE_PARM_DESC(i915_enable_fbc,
75 "Enable frame buffer compression for power savings "
Keith Packardcd0de032011-09-19 21:34:19 -070076 "(default: -1 (use per-chip default))");
Jesse Barnesc1a9f042011-05-05 15:24:21 -070077
Ben Widawskya35d9d32011-07-13 14:38:17 -070078unsigned int i915_lvds_downclock __read_mostly = 0;
Jesse Barnes33814342010-01-14 20:48:02 +000079module_param_named(lvds_downclock, i915_lvds_downclock, int, 0400);
Ben Widawsky6e96e772011-07-13 14:38:18 -070080MODULE_PARM_DESC(lvds_downclock,
81 "Use panel (LVDS/eDP) downclocking for power savings "
82 "(default: false)");
Jesse Barnes33814342010-01-14 20:48:02 +000083
Takashi Iwai121d5272012-03-20 13:07:06 +010084int i915_lvds_channel_mode __read_mostly;
85module_param_named(lvds_channel_mode, i915_lvds_channel_mode, int, 0600);
86MODULE_PARM_DESC(lvds_channel_mode,
87 "Specify LVDS channel mode "
88 "(0=probe BIOS [default], 1=single-channel, 2=dual-channel)");
89
Keith Packard4415e632011-11-09 09:57:50 -080090int i915_panel_use_ssc __read_mostly = -1;
Chris Wilsona7615032011-01-12 17:04:08 +000091module_param_named(lvds_use_ssc, i915_panel_use_ssc, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070092MODULE_PARM_DESC(lvds_use_ssc,
93 "Use Spread Spectrum Clock with panels [LVDS/eDP] "
Keith Packard72bbe58c2011-09-26 16:09:45 -070094 "(default: auto from VBT)");
Chris Wilsona7615032011-01-12 17:04:08 +000095
Ben Widawskya35d9d32011-07-13 14:38:17 -070096int i915_vbt_sdvo_panel_type __read_mostly = -1;
Chris Wilson5a1e5b62011-01-29 16:50:25 +000097module_param_named(vbt_sdvo_panel_type, i915_vbt_sdvo_panel_type, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070098MODULE_PARM_DESC(vbt_sdvo_panel_type,
Mathias Fröhlichc10e4082012-03-01 06:44:35 +010099 "Override/Ignore selection of SDVO panel mode in the VBT "
100 "(-2=ignore, -1=auto [default], index in VBT BIOS table)");
Chris Wilson5a1e5b62011-01-29 16:50:25 +0000101
Ben Widawskya35d9d32011-07-13 14:38:17 -0700102static bool i915_try_reset __read_mostly = true;
Chris Wilsond78cb502010-12-23 13:33:15 +0000103module_param_named(reset, i915_try_reset, bool, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -0700104MODULE_PARM_DESC(reset, "Attempt GPU resets (default: true)");
Chris Wilsond78cb502010-12-23 13:33:15 +0000105
Ben Widawskya35d9d32011-07-13 14:38:17 -0700106bool i915_enable_hangcheck __read_mostly = true;
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700107module_param_named(enable_hangcheck, i915_enable_hangcheck, bool, 0644);
Ben Widawsky6e96e772011-07-13 14:38:18 -0700108MODULE_PARM_DESC(enable_hangcheck,
109 "Periodically check GPU activity for detecting hangs. "
110 "WARNING: Disabling this can cause system wide hangs. "
111 "(default: true)");
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700112
Daniel Vetter650dc072012-04-02 10:08:35 +0200113int i915_enable_ppgtt __read_mostly = -1;
Ben Widawskyad525462013-11-25 09:54:36 -0800114module_param_named(i915_enable_ppgtt, i915_enable_ppgtt, int, 0400);
Daniel Vettere21af882012-02-09 20:53:27 +0100115MODULE_PARM_DESC(i915_enable_ppgtt,
Ben Widawsky7e0d96b2013-12-06 14:11:26 -0800116 "Override PPGTT usage. "
117 "(-1=auto [default], 0=disabled, 1=aliasing, 2=full)");
Daniel Vettere21af882012-02-09 20:53:27 +0100118
Rodrigo Vivi105b7c12013-07-11 18:45:02 -0300119int i915_enable_psr __read_mostly = 0;
120module_param_named(enable_psr, i915_enable_psr, int, 0600);
121MODULE_PARM_DESC(enable_psr, "Enable PSR (default: false)");
122
Josh Triplett99486b82013-08-13 16:23:17 -0700123unsigned int i915_preliminary_hw_support __read_mostly = IS_ENABLED(CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT);
Rodrigo Vivi0a3af262012-10-15 17:16:23 -0300124module_param_named(preliminary_hw_support, i915_preliminary_hw_support, int, 0600);
125MODULE_PARM_DESC(preliminary_hw_support,
Josh Triplett99486b82013-08-13 16:23:17 -0700126 "Enable preliminary hardware support.");
Rodrigo Vivi0a3af262012-10-15 17:16:23 -0300127
Paulo Zanonibf51d5e2013-07-03 17:12:13 -0300128int i915_disable_power_well __read_mostly = 1;
Paulo Zanoni2124b722013-03-22 14:07:23 -0300129module_param_named(disable_power_well, i915_disable_power_well, int, 0600);
130MODULE_PARM_DESC(disable_power_well,
Paulo Zanonibf51d5e2013-07-03 17:12:13 -0300131 "Disable the power well when possible (default: true)");
Paulo Zanoni2124b722013-03-22 14:07:23 -0300132
Paulo Zanoni3c4ca582013-05-31 16:33:23 -0300133int i915_enable_ips __read_mostly = 1;
134module_param_named(enable_ips, i915_enable_ips, int, 0600);
135MODULE_PARM_DESC(enable_ips, "Enable IPS (default: true)");
136
Jesse Barnes2385bdf2013-06-26 01:38:15 +0300137bool i915_fastboot __read_mostly = 0;
138module_param_named(fastboot, i915_fastboot, bool, 0600);
139MODULE_PARM_DESC(fastboot, "Try to skip unnecessary mode sets at boot time "
140 "(default: false)");
141
Paulo Zanonie27e9702013-08-19 13:18:12 -0300142int i915_enable_pc8 __read_mostly = 1;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300143module_param_named(enable_pc8, i915_enable_pc8, int, 0600);
Paulo Zanonie27e9702013-08-19 13:18:12 -0300144MODULE_PARM_DESC(enable_pc8, "Enable support for low power package C states (PC8+) (default: true)");
Paulo Zanonic67a4702013-08-19 13:18:09 -0300145
Paulo Zanoni90058742013-08-19 13:18:11 -0300146int i915_pc8_timeout __read_mostly = 5000;
147module_param_named(pc8_timeout, i915_pc8_timeout, int, 0600);
148MODULE_PARM_DESC(pc8_timeout, "Number of msecs of idleness required to enter PC8+ (default: 5000)");
149
Xiong Zhang0b74b502013-07-19 13:51:24 +0800150bool i915_prefault_disable __read_mostly;
151module_param_named(prefault_disable, i915_prefault_disable, bool, 0600);
152MODULE_PARM_DESC(prefault_disable,
153 "Disable page prefaulting for pread/pwrite/reloc (default:false). For developers only.");
154
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500155static struct drm_driver driver;
156
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200157static const struct intel_device_info intel_i830_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700158 .gen = 2, .is_mobile = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100159 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700160 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500161};
162
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200163static const struct intel_device_info intel_845g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700164 .gen = 2, .num_pipes = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100165 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700166 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500167};
168
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200169static const struct intel_device_info intel_i85x_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700170 .gen = 2, .is_i85x = 1, .is_mobile = 1, .num_pipes = 2,
Adam Jackson5ce8ba72010-04-15 14:03:30 -0400171 .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100172 .has_overlay = 1, .overlay_needs_physical = 1,
Ville Syrjäläfd70d522013-11-28 17:30:02 +0200173 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700174 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500175};
176
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200177static const struct intel_device_info intel_i865g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700178 .gen = 2, .num_pipes = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100179 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700180 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500181};
182
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200183static const struct intel_device_info intel_i915g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700184 .gen = 3, .is_i915g = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100185 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700186 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500187};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200188static const struct intel_device_info intel_i915gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700189 .gen = 3, .is_mobile = 1, .num_pipes = 2,
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -0500190 .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100191 .has_overlay = 1, .overlay_needs_physical = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100192 .supports_tv = 1,
Ville Syrjäläfd70d522013-11-28 17:30:02 +0200193 .has_fbc = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700194 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500195};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200196static const struct intel_device_info intel_i945g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700197 .gen = 3, .has_hotplug = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100198 .has_overlay = 1, .overlay_needs_physical = 1,
Ben Widawsky73ae4782013-10-15 10:02:57 -0700199 .ring_mask = RENDER_RING,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500200};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200201static const struct intel_device_info intel_i945gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700202 .gen = 3, .is_i945gm = 1, .is_mobile = 1, .num_pipes = 2,
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -0500203 .has_hotplug = 1, .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100204 .has_overlay = 1, .overlay_needs_physical = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100205 .supports_tv = 1,
Ville Syrjäläfd70d522013-11-28 17:30:02 +0200206 .has_fbc = 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 = {
Damien Lespiau4b305532013-11-02 21:07:32 -0700342 .gen = 8, .num_pipes = 3,
Ben Widawsky4d4dead2013-11-03 16:47:33 -0800343 .need_gfx_hws = 1, .has_hotplug = 1,
344 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
345 .has_llc = 1,
346 .has_ddi = 1,
347};
348
349static const struct intel_device_info intel_broadwell_m_info = {
Damien Lespiau4b305532013-11-02 21:07:32 -0700350 .gen = 8, .is_mobile = 1, .num_pipes = 3,
Ben Widawsky4d4dead2013-11-03 16:47:33 -0800351 .need_gfx_hws = 1, .has_hotplug = 1,
352 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
353 .has_llc = 1,
354 .has_ddi = 1,
355};
356
Jesse Barnesa0a18072013-07-26 13:32:51 -0700357/*
358 * Make sure any device matches here are from most specific to most
359 * general. For example, since the Quanta match is based on the subsystem
360 * and subvendor IDs, we need it to come before the more general IVB
361 * PCI ID matches, otherwise we'll use the wrong info struct above.
362 */
363#define INTEL_PCI_IDS \
364 INTEL_I830_IDS(&intel_i830_info), \
365 INTEL_I845G_IDS(&intel_845g_info), \
366 INTEL_I85X_IDS(&intel_i85x_info), \
367 INTEL_I865G_IDS(&intel_i865g_info), \
368 INTEL_I915G_IDS(&intel_i915g_info), \
369 INTEL_I915GM_IDS(&intel_i915gm_info), \
370 INTEL_I945G_IDS(&intel_i945g_info), \
371 INTEL_I945GM_IDS(&intel_i945gm_info), \
372 INTEL_I965G_IDS(&intel_i965g_info), \
373 INTEL_G33_IDS(&intel_g33_info), \
374 INTEL_I965GM_IDS(&intel_i965gm_info), \
375 INTEL_GM45_IDS(&intel_gm45_info), \
376 INTEL_G45_IDS(&intel_g45_info), \
377 INTEL_PINEVIEW_IDS(&intel_pineview_info), \
378 INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info), \
379 INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info), \
380 INTEL_SNB_D_IDS(&intel_sandybridge_d_info), \
381 INTEL_SNB_M_IDS(&intel_sandybridge_m_info), \
382 INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */ \
383 INTEL_IVB_M_IDS(&intel_ivybridge_m_info), \
384 INTEL_IVB_D_IDS(&intel_ivybridge_d_info), \
385 INTEL_HSW_D_IDS(&intel_haswell_d_info), \
386 INTEL_HSW_M_IDS(&intel_haswell_m_info), \
387 INTEL_VLV_M_IDS(&intel_valleyview_m_info), \
Ben Widawsky4d4dead2013-11-03 16:47:33 -0800388 INTEL_VLV_D_IDS(&intel_valleyview_d_info), \
389 INTEL_BDW_M_IDS(&intel_broadwell_m_info), \
390 INTEL_BDW_D_IDS(&intel_broadwell_d_info)
Jesse Barnesa0a18072013-07-26 13:32:51 -0700391
Chris Wilson6103da02010-07-05 18:01:47 +0100392static const struct pci_device_id pciidlist[] = { /* aka */
Jesse Barnesa0a18072013-07-26 13:32:51 -0700393 INTEL_PCI_IDS,
Kristian Høgsberg49ae35f2009-12-16 15:16:15 -0500394 {0, 0, 0}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
Jesse Barnes79e53942008-11-07 14:24:08 -0800397#if defined(CONFIG_DRM_I915_KMS)
398MODULE_DEVICE_TABLE(pci, pciidlist);
399#endif
400
Akshay Joshi0206e352011-08-16 15:34:10 -0400401void intel_detect_pch(struct drm_device *dev)
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800402{
403 struct drm_i915_private *dev_priv = dev->dev_private;
404 struct pci_dev *pch;
405
Ben Widawskyce1bb322013-04-05 13:12:44 -0700406 /* In all current cases, num_pipes is equivalent to the PCH_NOP setting
407 * (which really amounts to a PCH but no South Display).
408 */
409 if (INTEL_INFO(dev)->num_pipes == 0) {
410 dev_priv->pch_type = PCH_NOP;
Ben Widawskyce1bb322013-04-05 13:12:44 -0700411 return;
412 }
413
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800414 /*
415 * The reason to probe ISA bridge instead of Dev31:Fun0 is to
416 * make graphics device passthrough work easy for VMM, that only
417 * need to expose ISA bridge to let driver know the real hardware
418 * underneath. This is a requirement from virtualization team.
Rui Guo6a9c4b32013-06-19 21:10:23 +0800419 *
420 * In some virtualized environments (e.g. XEN), there is irrelevant
421 * ISA bridge in the system. To work reliably, we should scan trhough
422 * all the ISA bridge devices and check for the first match, instead
423 * of only checking the first one.
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800424 */
425 pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
Rui Guo6a9c4b32013-06-19 21:10:23 +0800426 while (pch) {
427 struct pci_dev *curr = pch;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800428 if (pch->vendor == PCI_VENDOR_ID_INTEL) {
Paulo Zanoni17a303e2012-11-20 15:12:07 -0200429 unsigned short id;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800430 id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
Paulo Zanoni17a303e2012-11-20 15:12:07 -0200431 dev_priv->pch_id = id;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800432
Jesse Barnes90711d52011-04-28 14:48:02 -0700433 if (id == INTEL_PCH_IBX_DEVICE_ID_TYPE) {
434 dev_priv->pch_type = PCH_IBX;
435 DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100436 WARN_ON(!IS_GEN5(dev));
Jesse Barnes90711d52011-04-28 14:48:02 -0700437 } else if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800438 dev_priv->pch_type = PCH_CPT;
439 DRM_DEBUG_KMS("Found CougarPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100440 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
Jesse Barnesc7925132011-04-07 12:33:56 -0700441 } else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
442 /* PantherPoint is CPT compatible */
443 dev_priv->pch_type = PCH_CPT;
Jani Nikula492ab662013-10-01 12:12:33 +0300444 DRM_DEBUG_KMS("Found PantherPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100445 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
Eugeni Dodonoveb877eb2012-03-29 12:32:20 -0300446 } else if (id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
447 dev_priv->pch_type = PCH_LPT;
448 DRM_DEBUG_KMS("Found LynxPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100449 WARN_ON(!IS_HASWELL(dev));
Paulo Zanoni08e14132013-04-12 18:16:54 -0300450 WARN_ON(IS_ULT(dev));
Paulo Zanoni018f52c2013-11-02 21:07:35 -0700451 } else if (IS_BROADWELL(dev)) {
452 dev_priv->pch_type = PCH_LPT;
453 dev_priv->pch_id =
454 INTEL_PCH_LPT_LP_DEVICE_ID_TYPE;
455 DRM_DEBUG_KMS("This is Broadwell, assuming "
456 "LynxPoint LP PCH\n");
Ben Widawskye76e0632013-11-07 21:40:41 -0800457 } else if (id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
458 dev_priv->pch_type = PCH_LPT;
459 DRM_DEBUG_KMS("Found LynxPoint LP PCH\n");
460 WARN_ON(!IS_HASWELL(dev));
461 WARN_ON(!IS_ULT(dev));
Rui Guo6a9c4b32013-06-19 21:10:23 +0800462 } else {
463 goto check_next;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800464 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800465 pci_dev_put(pch);
466 break;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800467 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800468check_next:
469 pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, curr);
470 pci_dev_put(curr);
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800471 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800472 if (!pch)
473 DRM_DEBUG_KMS("No PCH found?\n");
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800474}
475
Ben Widawsky2911a352012-04-05 14:47:36 -0700476bool i915_semaphore_is_enabled(struct drm_device *dev)
477{
478 if (INTEL_INFO(dev)->gen < 6)
Daniel Vettera08acaf2013-12-17 09:56:53 +0100479 return false;
Ben Widawsky2911a352012-04-05 14:47:36 -0700480
Ben Widawskye64c4a12013-11-04 19:45:44 -0800481 /* Until we get further testing... */
482 if (IS_GEN8(dev)) {
483 WARN_ON(!i915_preliminary_hw_support);
Daniel Vettera08acaf2013-12-17 09:56:53 +0100484 return false;
Ben Widawskye64c4a12013-11-04 19:45:44 -0800485 }
486
Ben Widawsky2911a352012-04-05 14:47:36 -0700487 if (i915_semaphores >= 0)
488 return i915_semaphores;
489
Daniel Vetter59de3292012-04-02 20:48:43 +0200490#ifdef CONFIG_INTEL_IOMMU
Ben Widawsky2911a352012-04-05 14:47:36 -0700491 /* Enable semaphores on SNB when IO remapping is off */
Daniel Vetter59de3292012-04-02 20:48:43 +0200492 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
493 return false;
494#endif
Ben Widawsky2911a352012-04-05 14:47:36 -0700495
Daniel Vettera08acaf2013-12-17 09:56:53 +0100496 return true;
Ben Widawsky2911a352012-04-05 14:47:36 -0700497}
498
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100499static int i915_drm_freeze(struct drm_device *dev)
500{
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100501 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes24576d22013-03-26 09:25:45 -0700502 struct drm_crtc *crtc;
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100503
Paulo Zanoni8a187452013-12-06 20:32:13 -0200504 intel_runtime_pm_get(dev_priv);
505
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);
Daniel Vetter754970e2014-01-16 22:28:44 +0100644 drm_mode_config_reset(dev);
Chris Wilson1833b132012-05-09 11:56:28 +0100645
Jesse Barnes5669fca2009-02-17 15:13:31 -0800646 mutex_lock(&dev->struct_mutex);
Jesse Barnes5669fca2009-02-17 15:13:31 -0800647
Daniel Vetterf691e2f2012-02-02 09:58:12 +0100648 error = i915_gem_init_hw(dev);
Jesse Barnes5669fca2009-02-17 15:13:31 -0800649 mutex_unlock(&dev->struct_mutex);
Jesse Barnes226485e2009-02-23 15:41:09 -0800650
Daniel Vetter15239092013-03-05 09:50:58 +0100651 /* We need working interrupts for modeset enabling ... */
652 drm_irq_install(dev);
653
Chris Wilson1833b132012-05-09 11:56:28 +0100654 intel_modeset_init_hw(dev);
Jesse Barnes24576d22013-03-26 09:25:45 -0700655
656 drm_modeset_lock_all(dev);
657 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);
Paulo Zanoni8a187452013-12-06 20:32:13 -0200693
694 intel_runtime_pm_put(dev_priv);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100695 return error;
696}
697
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700698static int i915_drm_thaw(struct drm_device *dev)
699{
Daniel Vetter7f16e5c2013-11-04 16:28:47 +0100700 if (drm_core_check_feature(dev, DRIVER_MODESET))
Ben Widawsky828c7902013-10-16 09:21:30 -0700701 i915_check_and_clear_faults(dev);
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700702
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300703 return __i915_drm_thaw(dev, true);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100704}
705
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000706int i915_resume(struct drm_device *dev)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100707{
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700708 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6eecba32010-09-08 09:45:11 +0100709 int ret;
710
Dave Airlie5bcf7192010-12-07 09:20:40 +1000711 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
712 return 0;
713
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100714 if (pci_enable_device(dev->pdev))
715 return -EIO;
716
717 pci_set_master(dev->pdev);
718
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700719 /*
720 * Platforms with opregion should have sane BIOS, older ones (gen3 and
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300721 * earlier) need to restore the GTT mappings since the BIOS might clear
722 * all our scratch PTEs.
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700723 */
Paulo Zanoni9d49c0e2013-09-12 18:06:43 -0300724 ret = __i915_drm_thaw(dev, !dev_priv->opregion.header);
Chris Wilson6eecba32010-09-08 09:45:11 +0100725 if (ret)
726 return ret;
727
728 drm_kms_helper_poll_enable(dev);
729 return 0;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000730}
731
Ben Gamari11ed50e2009-09-14 17:48:45 -0400732/**
Eugeni Dodonovf3953dc2011-11-28 16:15:17 -0200733 * i915_reset - reset chip after a hang
Ben Gamari11ed50e2009-09-14 17:48:45 -0400734 * @dev: drm device to reset
Ben Gamari11ed50e2009-09-14 17:48:45 -0400735 *
736 * Reset the chip. Useful if a hang is detected. Returns zero on successful
737 * reset or otherwise an error code.
738 *
739 * Procedure is fairly simple:
740 * - reset the chip using the reset reg
741 * - re-init context state
742 * - re-init hardware status page
743 * - re-init ring buffer
744 * - re-init interrupt state
745 * - re-init display
746 */
Daniel Vetterd4b8bb22012-04-27 15:17:44 +0200747int i915_reset(struct drm_device *dev)
Ben Gamari11ed50e2009-09-14 17:48:45 -0400748{
749 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100750 bool simulated;
Kenneth Graunke0573ed42010-09-11 03:17:19 -0700751 int ret;
Ben Gamari11ed50e2009-09-14 17:48:45 -0400752
Chris Wilsond78cb502010-12-23 13:33:15 +0000753 if (!i915_try_reset)
754 return 0;
755
Daniel Vetterd54a02c2012-07-04 22:18:39 +0200756 mutex_lock(&dev->struct_mutex);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400757
Chris Wilson069efc12010-09-30 16:53:18 +0100758 i915_gem_reset(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400759
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100760 simulated = dev_priv->gpu_error.stop_rings != 0;
761
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300762 ret = intel_gpu_reset(dev);
Daniel Vetter350d2702012-04-27 15:17:42 +0200763
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300764 /* Also reset the gpu hangman. */
765 if (simulated) {
766 DRM_INFO("Simulated gpu hang, resetting stop_rings\n");
767 dev_priv->gpu_error.stop_rings = 0;
768 if (ret == -ENODEV) {
Daniel Vetterf2d91a22013-11-07 09:48:57 +0100769 DRM_INFO("Reset not implemented, but ignoring "
770 "error for simulated gpu hangs\n");
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300771 ret = 0;
772 }
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100773 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +0300774
Kenneth Graunke0573ed42010-09-11 03:17:19 -0700775 if (ret) {
Daniel Vetterf2d91a22013-11-07 09:48:57 +0100776 DRM_ERROR("Failed to reset chip: %i\n", ret);
Daniel J Bluemanf953c932010-05-17 14:23:52 +0100777 mutex_unlock(&dev->struct_mutex);
Chris Wilsonf803aa52010-09-19 12:38:26 +0100778 return ret;
Ben Gamari11ed50e2009-09-14 17:48:45 -0400779 }
780
781 /* Ok, now get things going again... */
782
783 /*
784 * Everything depends on having the GTT running, so we need to start
785 * there. Fortunately we don't need to do this unless we reset the
786 * chip at a PCI level.
787 *
788 * Next we need to restore the context, but we don't use those
789 * yet either...
790 *
791 * Ring buffer needs to be re-initialized in the KMS case, or if X
792 * was running at the time of the reset (i.e. we weren't VT
793 * switched away).
794 */
795 if (drm_core_check_feature(dev, DRIVER_MODESET) ||
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200796 !dev_priv->ums.mm_suspended) {
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200797 dev_priv->ums.mm_suspended = 0;
Eric Anholt75a68982010-11-18 09:31:13 +0800798
Ben Widawsky3d57e5b2013-10-14 10:01:36 -0700799 ret = i915_gem_init_hw(dev);
Daniel Vetter8e88a2b2012-06-19 18:40:00 +0200800 mutex_unlock(&dev->struct_mutex);
Ben Widawsky3d57e5b2013-10-14 10:01:36 -0700801 if (ret) {
802 DRM_ERROR("Failed hw init on reset %d\n", ret);
803 return ret;
804 }
Daniel Vetterf8175862012-04-10 15:50:11 +0200805
Ben Gamari11ed50e2009-09-14 17:48:45 -0400806 drm_irq_uninstall(dev);
807 drm_irq_install(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +0100808 intel_hpd_init(dev);
Daniel Vetterbcbc3242012-04-27 15:17:41 +0200809 } else {
810 mutex_unlock(&dev->struct_mutex);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400811 }
812
Ben Gamari11ed50e2009-09-14 17:48:45 -0400813 return 0;
814}
815
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -0800816static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500817{
Daniel Vetter01a06852012-06-25 15:58:49 +0200818 struct intel_device_info *intel_info =
819 (struct intel_device_info *) ent->driver_data;
820
Ben Widawskyb833d682013-08-23 16:00:07 -0700821 if (IS_PRELIMINARY_HW(intel_info) && !i915_preliminary_hw_support) {
822 DRM_INFO("This hardware requires preliminary hardware support.\n"
823 "See CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT, and/or modparam preliminary_hw_support\n");
824 return -ENODEV;
825 }
826
Chris Wilson5fe49d82011-02-01 19:43:02 +0000827 /* Only bind to function 0 of the device. Early generations
828 * used function 1 as a placeholder for multi-head. This causes
829 * us confusion instead, especially on the systems where both
830 * functions have the same PCI-ID!
831 */
832 if (PCI_FUNC(pdev->devfn))
833 return -ENODEV;
834
Daniel Vetter24986ee2013-12-11 11:34:33 +0100835 driver.driver_features &= ~(DRIVER_USE_AGP);
Daniel Vetter01a06852012-06-25 15:58:49 +0200836
Jordan Crousedcdb1672010-05-27 13:40:25 -0600837 return drm_get_pci_dev(pdev, ent, &driver);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500838}
839
840static void
841i915_pci_remove(struct pci_dev *pdev)
842{
843 struct drm_device *dev = pci_get_drvdata(pdev);
844
845 drm_put_dev(dev);
846}
847
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100848static int i915_pm_suspend(struct device *dev)
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500849{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100850 struct pci_dev *pdev = to_pci_dev(dev);
851 struct drm_device *drm_dev = pci_get_drvdata(pdev);
852 int error;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500853
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100854 if (!drm_dev || !drm_dev->dev_private) {
855 dev_err(dev, "DRM not initialized, aborting suspend.\n");
856 return -ENODEV;
857 }
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500858
Dave Airlie5bcf7192010-12-07 09:20:40 +1000859 if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
860 return 0;
861
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100862 error = i915_drm_freeze(drm_dev);
863 if (error)
864 return error;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500865
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100866 pci_disable_device(pdev);
867 pci_set_power_state(pdev, PCI_D3hot);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800868
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800869 return 0;
870}
871
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100872static int i915_pm_resume(struct device *dev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800873{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100874 struct pci_dev *pdev = to_pci_dev(dev);
875 struct drm_device *drm_dev = pci_get_drvdata(pdev);
876
877 return i915_resume(drm_dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800878}
879
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100880static int i915_pm_freeze(struct device *dev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800881{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100882 struct pci_dev *pdev = to_pci_dev(dev);
883 struct drm_device *drm_dev = pci_get_drvdata(pdev);
884
885 if (!drm_dev || !drm_dev->dev_private) {
886 dev_err(dev, "DRM not initialized, aborting suspend.\n");
887 return -ENODEV;
888 }
889
890 return i915_drm_freeze(drm_dev);
891}
892
893static int i915_pm_thaw(struct device *dev)
894{
895 struct pci_dev *pdev = to_pci_dev(dev);
896 struct drm_device *drm_dev = pci_get_drvdata(pdev);
897
898 return i915_drm_thaw(drm_dev);
899}
900
901static int i915_pm_poweroff(struct device *dev)
902{
903 struct pci_dev *pdev = to_pci_dev(dev);
904 struct drm_device *drm_dev = pci_get_drvdata(pdev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100905
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100906 return i915_drm_freeze(drm_dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800907}
908
Paulo Zanoni8a187452013-12-06 20:32:13 -0200909static int i915_runtime_suspend(struct device *device)
910{
911 struct pci_dev *pdev = to_pci_dev(device);
912 struct drm_device *dev = pci_get_drvdata(pdev);
913 struct drm_i915_private *dev_priv = dev->dev_private;
914
915 WARN_ON(!HAS_RUNTIME_PM(dev));
916
917 DRM_DEBUG_KMS("Suspending device\n");
918
Paulo Zanoni48018a52013-12-13 15:22:31 -0200919 i915_gem_release_all_mmaps(dev_priv);
920
Paulo Zanoni16a3d6e2013-12-13 15:22:30 -0200921 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Paulo Zanoni8a187452013-12-06 20:32:13 -0200922 dev_priv->pm.suspended = true;
Kristen Carlson Accardi1fb23622014-01-14 15:36:15 -0800923
924 /*
925 * current versions of firmware which depend on this opregion
926 * notification have repurposed the D1 definition to mean
927 * "runtime suspended" vs. what you would normally expect (D3)
928 * to distinguish it from notifications that might be sent
929 * via the suspend path.
930 */
931 intel_opregion_notify_adapter(dev, PCI_D1);
Paulo Zanoni8a187452013-12-06 20:32:13 -0200932
933 return 0;
934}
935
936static int i915_runtime_resume(struct device *device)
937{
938 struct pci_dev *pdev = to_pci_dev(device);
939 struct drm_device *dev = pci_get_drvdata(pdev);
940 struct drm_i915_private *dev_priv = dev->dev_private;
941
942 WARN_ON(!HAS_RUNTIME_PM(dev));
943
944 DRM_DEBUG_KMS("Resuming device\n");
945
Paulo Zanonicd2e9e92013-12-06 20:34:21 -0200946 intel_opregion_notify_adapter(dev, PCI_D0);
Paulo Zanoni8a187452013-12-06 20:32:13 -0200947 dev_priv->pm.suspended = false;
948
949 return 0;
950}
951
Chris Wilsonb4b78d12010-06-06 15:40:20 +0100952static const struct dev_pm_ops i915_pm_ops = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400953 .suspend = i915_pm_suspend,
954 .resume = i915_pm_resume,
955 .freeze = i915_pm_freeze,
956 .thaw = i915_pm_thaw,
957 .poweroff = i915_pm_poweroff,
958 .restore = i915_pm_resume,
Paulo Zanoni8a187452013-12-06 20:32:13 -0200959 .runtime_suspend = i915_runtime_suspend,
960 .runtime_resume = i915_runtime_resume,
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800961};
962
Laurent Pinchart78b68552012-05-17 13:27:22 +0200963static const struct vm_operations_struct i915_gem_vm_ops = {
Jesse Barnesde151cf2008-11-12 10:03:55 -0800964 .fault = i915_gem_fault,
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800965 .open = drm_gem_vm_open,
966 .close = drm_gem_vm_close,
Jesse Barnesde151cf2008-11-12 10:03:55 -0800967};
968
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700969static const struct file_operations i915_driver_fops = {
970 .owner = THIS_MODULE,
971 .open = drm_open,
972 .release = drm_release,
973 .unlocked_ioctl = drm_ioctl,
974 .mmap = drm_gem_mmap,
975 .poll = drm_poll,
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700976 .read = drm_read,
977#ifdef CONFIG_COMPAT
978 .compat_ioctl = i915_compat_ioctl,
979#endif
980 .llseek = noop_llseek,
981};
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983static struct drm_driver driver = {
Michael Witten0c547812011-08-25 17:55:54 +0000984 /* Don't use MTRRs here; the Xserver or userspace app should
985 * deal with them for Intel hardware.
Dave Airlie792d2b92005-11-11 23:30:27 +1100986 */
Eric Anholt673a3942008-07-30 12:06:12 -0700987 .driver_features =
Daniel Vetter24986ee2013-12-11 11:34:33 +0100988 DRIVER_USE_AGP |
Kristian Høgsberg10ba5012013-08-25 18:29:01 +0200989 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME |
990 DRIVER_RENDER,
Dave Airlie22eae942005-11-10 22:16:34 +1100991 .load = i915_driver_load,
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000992 .unload = i915_driver_unload,
Eric Anholt673a3942008-07-30 12:06:12 -0700993 .open = i915_driver_open,
Dave Airlie22eae942005-11-10 22:16:34 +1100994 .lastclose = i915_driver_lastclose,
995 .preclose = i915_driver_preclose,
Eric Anholt673a3942008-07-30 12:06:12 -0700996 .postclose = i915_driver_postclose,
Rafael J. Wysockid8e29202010-01-09 00:45:33 +0100997
998 /* Used in place of i915_pm_ops for non-DRIVER_MODESET */
999 .suspend = i915_suspend,
1000 .resume = i915_resume,
1001
Dave Airliecda17382005-07-10 17:31:26 +10001002 .device_is_agp = i915_driver_device_is_agp,
Dave Airlie7c1c2872008-11-28 14:22:24 +10001003 .master_create = i915_master_create,
1004 .master_destroy = i915_master_destroy,
Ben Gamari955b12d2009-02-17 20:08:49 -05001005#if defined(CONFIG_DEBUG_FS)
Ben Gamari27c202a2009-07-01 22:26:52 -04001006 .debugfs_init = i915_debugfs_init,
1007 .debugfs_cleanup = i915_debugfs_cleanup,
Ben Gamari955b12d2009-02-17 20:08:49 -05001008#endif
Eric Anholt673a3942008-07-30 12:06:12 -07001009 .gem_free_object = i915_gem_free_object,
Jesse Barnesde151cf2008-11-12 10:03:55 -08001010 .gem_vm_ops = &i915_gem_vm_ops,
Daniel Vetter1286ff72012-05-10 15:25:09 +02001011
1012 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
1013 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
1014 .gem_prime_export = i915_gem_prime_export,
1015 .gem_prime_import = i915_gem_prime_import,
1016
Dave Airlieff72145b2011-02-07 12:16:14 +10001017 .dumb_create = i915_gem_dumb_create,
1018 .dumb_map_offset = i915_gem_mmap_gtt,
Daniel Vetter43387b32013-07-16 09:12:04 +02001019 .dumb_destroy = drm_gem_dumb_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 .ioctls = i915_ioctls,
Arjan van de Vene08e96d2011-10-31 07:28:57 -07001021 .fops = &i915_driver_fops,
Dave Airlie22eae942005-11-10 22:16:34 +11001022 .name = DRIVER_NAME,
1023 .desc = DRIVER_DESC,
1024 .date = DRIVER_DATE,
1025 .major = DRIVER_MAJOR,
1026 .minor = DRIVER_MINOR,
1027 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028};
1029
Dave Airlie8410ea32010-12-15 03:16:38 +10001030static struct pci_driver i915_pci_driver = {
1031 .name = DRIVER_NAME,
1032 .id_table = pciidlist,
1033 .probe = i915_pci_probe,
1034 .remove = i915_pci_remove,
1035 .driver.pm = &i915_pm_ops,
1036};
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038static int __init i915_init(void)
1039{
1040 driver.num_ioctls = i915_max_ioctl;
Jesse Barnes79e53942008-11-07 14:24:08 -08001041
1042 /*
1043 * If CONFIG_DRM_I915_KMS is set, default to KMS unless
1044 * explicitly disabled with the module pararmeter.
1045 *
1046 * Otherwise, just follow the parameter (defaulting to off).
1047 *
1048 * Allow optional vga_text_mode_force boot option to override
1049 * the default behavior.
1050 */
1051#if defined(CONFIG_DRM_I915_KMS)
1052 if (i915_modeset != 0)
1053 driver.driver_features |= DRIVER_MODESET;
1054#endif
1055 if (i915_modeset == 1)
1056 driver.driver_features |= DRIVER_MODESET;
1057
1058#ifdef CONFIG_VGA_CONSOLE
1059 if (vgacon_text_force() && i915_modeset == -1)
1060 driver.driver_features &= ~DRIVER_MODESET;
1061#endif
1062
Daniel Vetterb30324a2013-11-13 22:11:25 +01001063 if (!(driver.driver_features & DRIVER_MODESET)) {
Chris Wilson3885c6b2011-01-23 10:45:14 +00001064 driver.get_vblank_timestamp = NULL;
Daniel Vetterb30324a2013-11-13 22:11:25 +01001065#ifndef CONFIG_DRM_I915_UMS
1066 /* Silently fail loading to not upset userspace. */
1067 return 0;
1068#endif
1069 }
Chris Wilson3885c6b2011-01-23 10:45:14 +00001070
Dave Airlie8410ea32010-12-15 03:16:38 +10001071 return drm_pci_init(&driver, &i915_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073
1074static void __exit i915_exit(void)
1075{
Daniel Vetterb33ecdd2013-11-15 17:16:33 +01001076#ifndef CONFIG_DRM_I915_UMS
1077 if (!(driver.driver_features & DRIVER_MODESET))
1078 return; /* Never loaded a driver. */
1079#endif
1080
Dave Airlie8410ea32010-12-15 03:16:38 +10001081 drm_pci_exit(&driver, &i915_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
1084module_init(i915_init);
1085module_exit(i915_exit);
1086
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001087MODULE_AUTHOR(DRIVER_AUTHOR);
1088MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089MODULE_LICENSE("GPL and additional rights");