blob: ccb28ead3501e7a96d6adfbf5cecbd6438d3a0ad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i915_drv.c -- i830,i845,i855,i865,i915 driver -*- linux-c -*-
2 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Dave Airliebc54fd12005-06-23 22:46:46 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10007 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
18 * of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
23 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Jesse Barnes5669fca2009-02-17 15:13:31 -080030#include <linux/device.h>
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/i915_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "i915_drv.h"
Chris Wilson990bbda2012-07-02 11:51:02 -030034#include "i915_trace.h"
Kenneth Graunkef49f0582010-09-11 01:19:14 -070035#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/console.h>
Paul Gortmakere0cd3602011-08-30 11:04:30 -040038#include <linux/module.h>
David Howells760285e2012-10-02 18:01:07 +010039#include <drm/drm_crtc_helper.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080040
Ben Widawskya35d9d32011-07-13 14:38:17 -070041static int i915_modeset __read_mostly = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -080042module_param_named(modeset, i915_modeset, int, 0400);
Ben Widawsky6e96e772011-07-13 14:38:18 -070043MODULE_PARM_DESC(modeset,
44 "Use kernel modesetting [KMS] (0=DRM_I915_KMS from .config, "
45 "1=on, -1=force vga console preference [default])");
Jesse Barnes79e53942008-11-07 14:24:08 -080046
Ben Widawskya35d9d32011-07-13 14:38:17 -070047unsigned int i915_fbpercrtc __always_unused = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080048module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Daniel Vettera7269152012-11-20 14:50:08 +010050int i915_panel_ignore_lid __read_mostly = 1;
Chris Wilsonfca87402011-02-17 13:44:48 +000051module_param_named(panel_ignore_lid, i915_panel_ignore_lid, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070052MODULE_PARM_DESC(panel_ignore_lid,
Daniel Vettera7269152012-11-20 14:50:08 +010053 "Override lid status (0=autodetect, 1=autodetect disabled [default], "
54 "-1=force lid closed, -2=force lid open)");
Chris Wilsonfca87402011-02-17 13:44:48 +000055
Ben Widawskya35d9d32011-07-13 14:38:17 -070056unsigned int i915_powersave __read_mostly = 1;
Chris Wilson0aa99272010-11-02 09:20:50 +000057module_param_named(powersave, i915_powersave, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070058MODULE_PARM_DESC(powersave,
59 "Enable powersavings, fbc, downclocking, etc. (default: true)");
Jesse Barnes652c3932009-08-17 13:31:43 -070060
Eugeni Dodonovf45b5552011-12-09 17:16:37 -080061int i915_semaphores __read_mostly = -1;
Chris Wilsona1656b92011-03-04 18:48:03 +000062module_param_named(semaphores, i915_semaphores, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070063MODULE_PARM_DESC(semaphores,
Eugeni Dodonovf45b5552011-12-09 17:16:37 -080064 "Use semaphores for inter-ring sync (default: -1 (use per-chip defaults))");
Chris Wilsona1656b92011-03-04 18:48:03 +000065
Keith Packardc0f372b32011-11-16 22:24:52 -080066int i915_enable_rc6 __read_mostly = -1;
Jesse Barnesf57f9c12012-04-11 09:39:02 -070067module_param_named(i915_enable_rc6, i915_enable_rc6, int, 0400);
Ben Widawsky6e96e772011-07-13 14:38:18 -070068MODULE_PARM_DESC(i915_enable_rc6,
Eugeni Dodonov83b7f9a2012-03-23 11:57:18 -030069 "Enable power-saving render C-state 6. "
70 "Different stages can be selected via bitmask values "
71 "(0 = disable; 1 = enable rc6; 2 = enable deep rc6; 4 = enable deepest rc6). "
72 "For example, 3 would enable rc6 and deep rc6, and 7 would enable everything. "
73 "default: -1 (use per-chip default)");
Chris Wilsonac668082011-02-09 16:15:32 +000074
Keith Packard4415e632011-11-09 09:57:50 -080075int i915_enable_fbc __read_mostly = -1;
Jesse Barnesc1a9f042011-05-05 15:24:21 -070076module_param_named(i915_enable_fbc, i915_enable_fbc, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070077MODULE_PARM_DESC(i915_enable_fbc,
78 "Enable frame buffer compression for power savings "
Keith Packardcd0de032011-09-19 21:34:19 -070079 "(default: -1 (use per-chip default))");
Jesse Barnesc1a9f042011-05-05 15:24:21 -070080
Ben Widawskya35d9d32011-07-13 14:38:17 -070081unsigned int i915_lvds_downclock __read_mostly = 0;
Jesse Barnes33814342010-01-14 20:48:02 +000082module_param_named(lvds_downclock, i915_lvds_downclock, int, 0400);
Ben Widawsky6e96e772011-07-13 14:38:18 -070083MODULE_PARM_DESC(lvds_downclock,
84 "Use panel (LVDS/eDP) downclocking for power savings "
85 "(default: false)");
Jesse Barnes33814342010-01-14 20:48:02 +000086
Takashi Iwai121d5272012-03-20 13:07:06 +010087int i915_lvds_channel_mode __read_mostly;
88module_param_named(lvds_channel_mode, i915_lvds_channel_mode, int, 0600);
89MODULE_PARM_DESC(lvds_channel_mode,
90 "Specify LVDS channel mode "
91 "(0=probe BIOS [default], 1=single-channel, 2=dual-channel)");
92
Keith Packard4415e632011-11-09 09:57:50 -080093int i915_panel_use_ssc __read_mostly = -1;
Chris Wilsona7615032011-01-12 17:04:08 +000094module_param_named(lvds_use_ssc, i915_panel_use_ssc, int, 0600);
Ben Widawsky6e96e772011-07-13 14:38:18 -070095MODULE_PARM_DESC(lvds_use_ssc,
96 "Use Spread Spectrum Clock with panels [LVDS/eDP] "
Keith 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;
117module_param_named(i915_enable_ppgtt, i915_enable_ppgtt, int, 0600);
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;
Zhenyu Wang1f7a6e32010-02-23 14:05:24 +0800158extern int intel_agp_enabled;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500159
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500160#define INTEL_VGA_DEVICE(id, info) { \
Daniel Vetter80a29012011-10-11 10:59:05 +0200161 .class = PCI_BASE_CLASS_DISPLAY << 16, \
Chris Wilson934f9922011-01-20 13:09:12 +0000162 .class_mask = 0xff0000, \
Kristian Høgsberg49ae35f2009-12-16 15:16:15 -0500163 .vendor = 0x8086, \
164 .device = id, \
165 .subvendor = PCI_ANY_ID, \
166 .subdevice = PCI_ANY_ID, \
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500167 .driver_data = (unsigned long) info }
Kristian Høgsberg49ae35f2009-12-16 15:16:15 -0500168
Ben Widawsky999bcde2013-04-05 13:12:45 -0700169#define INTEL_QUANTA_VGA_DEVICE(info) { \
170 .class = PCI_BASE_CLASS_DISPLAY << 16, \
171 .class_mask = 0xff0000, \
172 .vendor = 0x8086, \
173 .device = 0x16a, \
174 .subvendor = 0x152d, \
175 .subdevice = 0x8990, \
176 .driver_data = (unsigned long) info }
177
178
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200179static const struct intel_device_info intel_i830_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700180 .gen = 2, .is_mobile = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100181 .has_overlay = 1, .overlay_needs_physical = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500182};
183
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200184static const struct intel_device_info intel_845g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700185 .gen = 2, .num_pipes = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100186 .has_overlay = 1, .overlay_needs_physical = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500187};
188
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200189static const struct intel_device_info intel_i85x_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700190 .gen = 2, .is_i85x = 1, .is_mobile = 1, .num_pipes = 2,
Adam Jackson5ce8ba72010-04-15 14:03:30 -0400191 .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100192 .has_overlay = 1, .overlay_needs_physical = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500193};
194
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200195static const struct intel_device_info intel_i865g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700196 .gen = 2, .num_pipes = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100197 .has_overlay = 1, .overlay_needs_physical = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500198};
199
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200200static const struct intel_device_info intel_i915g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700201 .gen = 3, .is_i915g = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100202 .has_overlay = 1, .overlay_needs_physical = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500203};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200204static const struct intel_device_info intel_i915gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700205 .gen = 3, .is_mobile = 1, .num_pipes = 2,
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -0500206 .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100207 .has_overlay = 1, .overlay_needs_physical = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100208 .supports_tv = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500209};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200210static const struct intel_device_info intel_i945g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700211 .gen = 3, .has_hotplug = 1, .cursor_needs_physical = 1, .num_pipes = 2,
Chris Wilson315781482010-08-12 09:42:51 +0100212 .has_overlay = 1, .overlay_needs_physical = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500213};
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200214static const struct intel_device_info intel_i945gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700215 .gen = 3, .is_i945gm = 1, .is_mobile = 1, .num_pipes = 2,
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -0500216 .has_hotplug = 1, .cursor_needs_physical = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100217 .has_overlay = 1, .overlay_needs_physical = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100218 .supports_tv = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500219};
220
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200221static const struct intel_device_info intel_i965g_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700222 .gen = 4, .is_broadwater = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100223 .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100224 .has_overlay = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500225};
226
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200227static const struct intel_device_info intel_i965gm_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700228 .gen = 4, .is_crestline = 1, .num_pipes = 2,
Chris Wilsone3c4e5d2010-12-05 16:49:51 +0000229 .is_mobile = 1, .has_fbc = 1, .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100230 .has_overlay = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100231 .supports_tv = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500232};
233
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200234static const struct intel_device_info intel_g33_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700235 .gen = 3, .is_g33 = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100236 .need_gfx_hws = 1, .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100237 .has_overlay = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500238};
239
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200240static const struct intel_device_info intel_g45_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700241 .gen = 4, .is_g4x = 1, .need_gfx_hws = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100242 .has_pipe_cxsr = 1, .has_hotplug = 1,
Xiang, Haihao92f49d92010-09-16 10:43:10 +0800243 .has_bsd_ring = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500244};
245
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200246static const struct intel_device_info intel_gm45_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700247 .gen = 4, .is_g4x = 1, .num_pipes = 2,
Chris Wilsone3c4e5d2010-12-05 16:49:51 +0000248 .is_mobile = 1, .need_gfx_hws = 1, .has_fbc = 1,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100249 .has_pipe_cxsr = 1, .has_hotplug = 1,
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100250 .supports_tv = 1,
Xiang, Haihao92f49d92010-09-16 10:43:10 +0800251 .has_bsd_ring = 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_pineview_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700255 .gen = 3, .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100256 .need_gfx_hws = 1, .has_hotplug = 1,
Chris Wilson315781482010-08-12 09:42:51 +0100257 .has_overlay = 1,
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_d_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700261 .gen = 5, .num_pipes = 2,
Eugeni Dodonov5a117db2012-01-05 09:34:29 -0200262 .need_gfx_hws = 1, .has_hotplug = 1,
Xiang, Haihao92f49d92010-09-16 10:43:10 +0800263 .has_bsd_ring = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500264};
265
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200266static const struct intel_device_info intel_ironlake_m_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700267 .gen = 5, .is_mobile = 1, .num_pipes = 2,
Chris Wilsone3c4e5d2010-12-05 16:49:51 +0000268 .need_gfx_hws = 1, .has_hotplug = 1,
Jesse Barnesc1a9f042011-05-05 15:24:21 -0700269 .has_fbc = 1,
Xiang, Haihao92f49d92010-09-16 10:43:10 +0800270 .has_bsd_ring = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500271};
272
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200273static const struct intel_device_info intel_sandybridge_d_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700274 .gen = 6, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100275 .need_gfx_hws = 1, .has_hotplug = 1,
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100276 .has_bsd_ring = 1,
Chris Wilson549f7362010-10-19 11:19:32 +0100277 .has_blt_ring = 1,
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200278 .has_llc = 1,
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200279 .has_force_wake = 1,
Eric Anholtf6e450a2009-11-02 12:08:22 -0800280};
281
Tobias Klauser9a7e8492010-05-20 10:33:46 +0200282static const struct intel_device_info intel_sandybridge_m_info = {
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700283 .gen = 6, .is_mobile = 1, .num_pipes = 2,
Chris Wilsonc96c3a8c2010-08-11 09:59:24 +0100284 .need_gfx_hws = 1, .has_hotplug = 1,
Yuanhan Liu9c04f012010-12-15 15:42:32 +0800285 .has_fbc = 1,
Xiang, Haihao881f47b2010-09-19 14:40:43 +0100286 .has_bsd_ring = 1,
Chris Wilson549f7362010-10-19 11:19:32 +0100287 .has_blt_ring = 1,
Eugeni Dodonov3d29b842012-01-17 14:43:53 -0200288 .has_llc = 1,
Daniel Vetterb7884eb2012-06-04 11:18:15 +0200289 .has_force_wake = 1,
Eric Anholta13e4092010-01-07 15:08:18 -0800290};
291
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700292#define GEN7_FEATURES \
293 .gen = 7, .num_pipes = 3, \
294 .need_gfx_hws = 1, .has_hotplug = 1, \
295 .has_bsd_ring = 1, \
296 .has_blt_ring = 1, \
297 .has_llc = 1, \
298 .has_force_wake = 1
299
Jesse Barnesc76b6152011-04-28 14:32:07 -0700300static const struct intel_device_info intel_ivybridge_d_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700301 GEN7_FEATURES,
302 .is_ivybridge = 1,
Jesse Barnesc76b6152011-04-28 14:32:07 -0700303};
304
305static const struct intel_device_info intel_ivybridge_m_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700306 GEN7_FEATURES,
307 .is_ivybridge = 1,
308 .is_mobile = 1,
Rodrigo Viviabe959c2013-05-06 19:37:33 -0300309 .has_fbc = 1,
Jesse Barnesc76b6152011-04-28 14:32:07 -0700310};
311
Ben Widawsky999bcde2013-04-05 13:12:45 -0700312static const struct intel_device_info intel_ivybridge_q_info = {
313 GEN7_FEATURES,
314 .is_ivybridge = 1,
315 .num_pipes = 0, /* legal, last one wins */
316};
317
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700318static const struct intel_device_info intel_valleyview_m_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700319 GEN7_FEATURES,
320 .is_mobile = 1,
321 .num_pipes = 2,
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700322 .is_valleyview = 1,
Ville Syrjäläfba5d532013-01-24 15:29:56 +0200323 .display_mmio_offset = VLV_DISPLAY_BASE,
Ben Widawsky30ccd962013-04-15 21:48:03 -0700324 .has_llc = 0, /* legal, last one wins */
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700325};
326
327static const struct intel_device_info intel_valleyview_d_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700328 GEN7_FEATURES,
329 .num_pipes = 2,
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700330 .is_valleyview = 1,
Ville Syrjäläfba5d532013-01-24 15:29:56 +0200331 .display_mmio_offset = VLV_DISPLAY_BASE,
Ben Widawsky30ccd962013-04-15 21:48:03 -0700332 .has_llc = 0, /* legal, last one wins */
Jesse Barnes70a3eb72012-03-28 13:39:21 -0700333};
334
Eugeni Dodonov4cae9ae2012-03-29 12:32:18 -0300335static const struct intel_device_info intel_haswell_d_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700336 GEN7_FEATURES,
337 .is_haswell = 1,
Damien Lespiaudd93be52013-04-22 18:40:39 +0100338 .has_ddi = 1,
Damien Lespiau30568c42013-04-22 18:40:41 +0100339 .has_fpga_dbg = 1,
Xiang, Haihaof72a1182013-05-28 19:22:22 -0700340 .has_vebox_ring = 1,
Eugeni Dodonov4cae9ae2012-03-29 12:32:18 -0300341};
342
343static const struct intel_device_info intel_haswell_m_info = {
Ben Widawsky219f4fd2013-03-15 11:17:54 -0700344 GEN7_FEATURES,
345 .is_haswell = 1,
346 .is_mobile = 1,
Damien Lespiaudd93be52013-04-22 18:40:39 +0100347 .has_ddi = 1,
Damien Lespiau30568c42013-04-22 18:40:41 +0100348 .has_fpga_dbg = 1,
Rodrigo Vivi891348b2013-05-06 19:37:36 -0300349 .has_fbc = 1,
Xiang, Haihaof72a1182013-05-28 19:22:22 -0700350 .has_vebox_ring = 1,
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500351};
352
Chris Wilson6103da02010-07-05 18:01:47 +0100353static const struct pci_device_id pciidlist[] = { /* aka */
354 INTEL_VGA_DEVICE(0x3577, &intel_i830_info), /* I830_M */
355 INTEL_VGA_DEVICE(0x2562, &intel_845g_info), /* 845_G */
356 INTEL_VGA_DEVICE(0x3582, &intel_i85x_info), /* I855_GM */
Adam Jackson5ce8ba72010-04-15 14:03:30 -0400357 INTEL_VGA_DEVICE(0x358e, &intel_i85x_info),
Chris Wilson6103da02010-07-05 18:01:47 +0100358 INTEL_VGA_DEVICE(0x2572, &intel_i865g_info), /* I865_G */
359 INTEL_VGA_DEVICE(0x2582, &intel_i915g_info), /* I915_G */
360 INTEL_VGA_DEVICE(0x258a, &intel_i915g_info), /* E7221_G */
361 INTEL_VGA_DEVICE(0x2592, &intel_i915gm_info), /* I915_GM */
362 INTEL_VGA_DEVICE(0x2772, &intel_i945g_info), /* I945_G */
363 INTEL_VGA_DEVICE(0x27a2, &intel_i945gm_info), /* I945_GM */
364 INTEL_VGA_DEVICE(0x27ae, &intel_i945gm_info), /* I945_GME */
365 INTEL_VGA_DEVICE(0x2972, &intel_i965g_info), /* I946_GZ */
366 INTEL_VGA_DEVICE(0x2982, &intel_i965g_info), /* G35_G */
367 INTEL_VGA_DEVICE(0x2992, &intel_i965g_info), /* I965_Q */
368 INTEL_VGA_DEVICE(0x29a2, &intel_i965g_info), /* I965_G */
369 INTEL_VGA_DEVICE(0x29b2, &intel_g33_info), /* Q35_G */
370 INTEL_VGA_DEVICE(0x29c2, &intel_g33_info), /* G33_G */
371 INTEL_VGA_DEVICE(0x29d2, &intel_g33_info), /* Q33_G */
372 INTEL_VGA_DEVICE(0x2a02, &intel_i965gm_info), /* I965_GM */
373 INTEL_VGA_DEVICE(0x2a12, &intel_i965gm_info), /* I965_GME */
374 INTEL_VGA_DEVICE(0x2a42, &intel_gm45_info), /* GM45_G */
375 INTEL_VGA_DEVICE(0x2e02, &intel_g45_info), /* IGD_E_G */
376 INTEL_VGA_DEVICE(0x2e12, &intel_g45_info), /* Q45_G */
377 INTEL_VGA_DEVICE(0x2e22, &intel_g45_info), /* G45_G */
378 INTEL_VGA_DEVICE(0x2e32, &intel_g45_info), /* G41_G */
379 INTEL_VGA_DEVICE(0x2e42, &intel_g45_info), /* B43_G */
Chris Wilson41a51422010-09-17 08:22:30 +0100380 INTEL_VGA_DEVICE(0x2e92, &intel_g45_info), /* B43_G.1 */
Kristian Høgsbergcfdf1fa2009-12-16 15:16:16 -0500381 INTEL_VGA_DEVICE(0xa001, &intel_pineview_info),
382 INTEL_VGA_DEVICE(0xa011, &intel_pineview_info),
383 INTEL_VGA_DEVICE(0x0042, &intel_ironlake_d_info),
384 INTEL_VGA_DEVICE(0x0046, &intel_ironlake_m_info),
Eric Anholtf6e450a2009-11-02 12:08:22 -0800385 INTEL_VGA_DEVICE(0x0102, &intel_sandybridge_d_info),
Zhenyu Wang85540482010-09-07 13:45:32 +0800386 INTEL_VGA_DEVICE(0x0112, &intel_sandybridge_d_info),
387 INTEL_VGA_DEVICE(0x0122, &intel_sandybridge_d_info),
Eric Anholta13e4092010-01-07 15:08:18 -0800388 INTEL_VGA_DEVICE(0x0106, &intel_sandybridge_m_info),
Zhenyu Wang85540482010-09-07 13:45:32 +0800389 INTEL_VGA_DEVICE(0x0116, &intel_sandybridge_m_info),
Zhenyu Wang4fefe432010-08-19 09:46:16 +0800390 INTEL_VGA_DEVICE(0x0126, &intel_sandybridge_m_info),
Zhenyu Wang85540482010-09-07 13:45:32 +0800391 INTEL_VGA_DEVICE(0x010A, &intel_sandybridge_d_info),
Jesse Barnesc76b6152011-04-28 14:32:07 -0700392 INTEL_VGA_DEVICE(0x0156, &intel_ivybridge_m_info), /* GT1 mobile */
393 INTEL_VGA_DEVICE(0x0166, &intel_ivybridge_m_info), /* GT2 mobile */
394 INTEL_VGA_DEVICE(0x0152, &intel_ivybridge_d_info), /* GT1 desktop */
395 INTEL_VGA_DEVICE(0x0162, &intel_ivybridge_d_info), /* GT2 desktop */
396 INTEL_VGA_DEVICE(0x015a, &intel_ivybridge_d_info), /* GT1 server */
Ben Widawsky999bcde2013-04-05 13:12:45 -0700397 INTEL_QUANTA_VGA_DEVICE(&intel_ivybridge_q_info), /* Quanta transcode */
Eugeni Dodonovcc22a932012-03-29 20:55:48 -0300398 INTEL_VGA_DEVICE(0x016a, &intel_ivybridge_d_info), /* GT2 server */
Eugeni Dodonovc14f5282012-05-09 15:37:32 -0300399 INTEL_VGA_DEVICE(0x0402, &intel_haswell_d_info), /* GT1 desktop */
400 INTEL_VGA_DEVICE(0x0412, &intel_haswell_d_info), /* GT2 desktop */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300401 INTEL_VGA_DEVICE(0x0422, &intel_haswell_d_info), /* GT3 desktop */
Eugeni Dodonovc14f5282012-05-09 15:37:32 -0300402 INTEL_VGA_DEVICE(0x040a, &intel_haswell_d_info), /* GT1 server */
403 INTEL_VGA_DEVICE(0x041a, &intel_haswell_d_info), /* GT2 server */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300404 INTEL_VGA_DEVICE(0x042a, &intel_haswell_d_info), /* GT3 server */
Eugeni Dodonovc14f5282012-05-09 15:37:32 -0300405 INTEL_VGA_DEVICE(0x0406, &intel_haswell_m_info), /* GT1 mobile */
406 INTEL_VGA_DEVICE(0x0416, &intel_haswell_m_info), /* GT2 mobile */
Paulo Zanonida612d82012-08-06 18:45:01 -0300407 INTEL_VGA_DEVICE(0x0426, &intel_haswell_m_info), /* GT2 mobile */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300408 INTEL_VGA_DEVICE(0x040B, &intel_haswell_d_info), /* GT1 reserved */
409 INTEL_VGA_DEVICE(0x041B, &intel_haswell_d_info), /* GT2 reserved */
410 INTEL_VGA_DEVICE(0x042B, &intel_haswell_d_info), /* GT3 reserved */
411 INTEL_VGA_DEVICE(0x040E, &intel_haswell_d_info), /* GT1 reserved */
412 INTEL_VGA_DEVICE(0x041E, &intel_haswell_d_info), /* GT2 reserved */
413 INTEL_VGA_DEVICE(0x042E, &intel_haswell_d_info), /* GT3 reserved */
Paulo Zanonida612d82012-08-06 18:45:01 -0300414 INTEL_VGA_DEVICE(0x0C02, &intel_haswell_d_info), /* SDV GT1 desktop */
415 INTEL_VGA_DEVICE(0x0C12, &intel_haswell_d_info), /* SDV GT2 desktop */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300416 INTEL_VGA_DEVICE(0x0C22, &intel_haswell_d_info), /* SDV GT3 desktop */
Paulo Zanonida612d82012-08-06 18:45:01 -0300417 INTEL_VGA_DEVICE(0x0C0A, &intel_haswell_d_info), /* SDV GT1 server */
418 INTEL_VGA_DEVICE(0x0C1A, &intel_haswell_d_info), /* SDV GT2 server */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300419 INTEL_VGA_DEVICE(0x0C2A, &intel_haswell_d_info), /* SDV GT3 server */
Paulo Zanonida612d82012-08-06 18:45:01 -0300420 INTEL_VGA_DEVICE(0x0C06, &intel_haswell_m_info), /* SDV GT1 mobile */
421 INTEL_VGA_DEVICE(0x0C16, &intel_haswell_m_info), /* SDV GT2 mobile */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300422 INTEL_VGA_DEVICE(0x0C26, &intel_haswell_m_info), /* SDV GT3 mobile */
423 INTEL_VGA_DEVICE(0x0C0B, &intel_haswell_d_info), /* SDV GT1 reserved */
424 INTEL_VGA_DEVICE(0x0C1B, &intel_haswell_d_info), /* SDV GT2 reserved */
425 INTEL_VGA_DEVICE(0x0C2B, &intel_haswell_d_info), /* SDV GT3 reserved */
426 INTEL_VGA_DEVICE(0x0C0E, &intel_haswell_d_info), /* SDV GT1 reserved */
427 INTEL_VGA_DEVICE(0x0C1E, &intel_haswell_d_info), /* SDV GT2 reserved */
428 INTEL_VGA_DEVICE(0x0C2E, &intel_haswell_d_info), /* SDV GT3 reserved */
Paulo Zanonida612d82012-08-06 18:45:01 -0300429 INTEL_VGA_DEVICE(0x0A02, &intel_haswell_d_info), /* ULT GT1 desktop */
430 INTEL_VGA_DEVICE(0x0A12, &intel_haswell_d_info), /* ULT GT2 desktop */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300431 INTEL_VGA_DEVICE(0x0A22, &intel_haswell_d_info), /* ULT GT3 desktop */
Paulo Zanonida612d82012-08-06 18:45:01 -0300432 INTEL_VGA_DEVICE(0x0A0A, &intel_haswell_d_info), /* ULT GT1 server */
433 INTEL_VGA_DEVICE(0x0A1A, &intel_haswell_d_info), /* ULT GT2 server */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300434 INTEL_VGA_DEVICE(0x0A2A, &intel_haswell_d_info), /* ULT GT3 server */
Paulo Zanonida612d82012-08-06 18:45:01 -0300435 INTEL_VGA_DEVICE(0x0A06, &intel_haswell_m_info), /* ULT GT1 mobile */
436 INTEL_VGA_DEVICE(0x0A16, &intel_haswell_m_info), /* ULT GT2 mobile */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300437 INTEL_VGA_DEVICE(0x0A26, &intel_haswell_m_info), /* ULT GT3 mobile */
438 INTEL_VGA_DEVICE(0x0A0B, &intel_haswell_d_info), /* ULT GT1 reserved */
439 INTEL_VGA_DEVICE(0x0A1B, &intel_haswell_d_info), /* ULT GT2 reserved */
440 INTEL_VGA_DEVICE(0x0A2B, &intel_haswell_d_info), /* ULT GT3 reserved */
441 INTEL_VGA_DEVICE(0x0A0E, &intel_haswell_m_info), /* ULT GT1 reserved */
442 INTEL_VGA_DEVICE(0x0A1E, &intel_haswell_m_info), /* ULT GT2 reserved */
443 INTEL_VGA_DEVICE(0x0A2E, &intel_haswell_m_info), /* ULT GT3 reserved */
Kenneth Graunke86c268e2013-03-01 17:00:50 -0800444 INTEL_VGA_DEVICE(0x0D02, &intel_haswell_d_info), /* CRW GT1 desktop */
445 INTEL_VGA_DEVICE(0x0D12, &intel_haswell_d_info), /* CRW GT2 desktop */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300446 INTEL_VGA_DEVICE(0x0D22, &intel_haswell_d_info), /* CRW GT3 desktop */
Kenneth Graunke86c268e2013-03-01 17:00:50 -0800447 INTEL_VGA_DEVICE(0x0D0A, &intel_haswell_d_info), /* CRW GT1 server */
448 INTEL_VGA_DEVICE(0x0D1A, &intel_haswell_d_info), /* CRW GT2 server */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300449 INTEL_VGA_DEVICE(0x0D2A, &intel_haswell_d_info), /* CRW GT3 server */
Kenneth Graunke86c268e2013-03-01 17:00:50 -0800450 INTEL_VGA_DEVICE(0x0D06, &intel_haswell_m_info), /* CRW GT1 mobile */
451 INTEL_VGA_DEVICE(0x0D16, &intel_haswell_m_info), /* CRW GT2 mobile */
Rodrigo Vivi1c98b482013-05-13 18:12:25 -0300452 INTEL_VGA_DEVICE(0x0D26, &intel_haswell_m_info), /* CRW GT3 mobile */
453 INTEL_VGA_DEVICE(0x0D0B, &intel_haswell_d_info), /* CRW GT1 reserved */
454 INTEL_VGA_DEVICE(0x0D1B, &intel_haswell_d_info), /* CRW GT2 reserved */
455 INTEL_VGA_DEVICE(0x0D2B, &intel_haswell_d_info), /* CRW GT3 reserved */
456 INTEL_VGA_DEVICE(0x0D0E, &intel_haswell_d_info), /* CRW GT1 reserved */
457 INTEL_VGA_DEVICE(0x0D1E, &intel_haswell_d_info), /* CRW GT2 reserved */
458 INTEL_VGA_DEVICE(0x0D2E, &intel_haswell_d_info), /* CRW GT3 reserved */
Jesse Barnesff049b62012-06-20 10:53:13 -0700459 INTEL_VGA_DEVICE(0x0f30, &intel_valleyview_m_info),
Jesse Barnesd7fee5f2013-03-08 10:45:50 -0800460 INTEL_VGA_DEVICE(0x0f31, &intel_valleyview_m_info),
461 INTEL_VGA_DEVICE(0x0f32, &intel_valleyview_m_info),
462 INTEL_VGA_DEVICE(0x0f33, &intel_valleyview_m_info),
Jesse Barnesff049b62012-06-20 10:53:13 -0700463 INTEL_VGA_DEVICE(0x0157, &intel_valleyview_m_info),
464 INTEL_VGA_DEVICE(0x0155, &intel_valleyview_d_info),
Kristian Høgsberg49ae35f2009-12-16 15:16:15 -0500465 {0, 0, 0}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466};
467
Jesse Barnes79e53942008-11-07 14:24:08 -0800468#if defined(CONFIG_DRM_I915_KMS)
469MODULE_DEVICE_TABLE(pci, pciidlist);
470#endif
471
Akshay Joshi0206e352011-08-16 15:34:10 -0400472void intel_detect_pch(struct drm_device *dev)
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800473{
474 struct drm_i915_private *dev_priv = dev->dev_private;
475 struct pci_dev *pch;
476
Ben Widawskyce1bb322013-04-05 13:12:44 -0700477 /* In all current cases, num_pipes is equivalent to the PCH_NOP setting
478 * (which really amounts to a PCH but no South Display).
479 */
480 if (INTEL_INFO(dev)->num_pipes == 0) {
481 dev_priv->pch_type = PCH_NOP;
Ben Widawskyce1bb322013-04-05 13:12:44 -0700482 return;
483 }
484
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800485 /*
486 * The reason to probe ISA bridge instead of Dev31:Fun0 is to
487 * make graphics device passthrough work easy for VMM, that only
488 * need to expose ISA bridge to let driver know the real hardware
489 * underneath. This is a requirement from virtualization team.
Rui Guo6a9c4b32013-06-19 21:10:23 +0800490 *
491 * In some virtualized environments (e.g. XEN), there is irrelevant
492 * ISA bridge in the system. To work reliably, we should scan trhough
493 * all the ISA bridge devices and check for the first match, instead
494 * of only checking the first one.
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800495 */
496 pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
Rui Guo6a9c4b32013-06-19 21:10:23 +0800497 while (pch) {
498 struct pci_dev *curr = pch;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800499 if (pch->vendor == PCI_VENDOR_ID_INTEL) {
Paulo Zanoni17a303e2012-11-20 15:12:07 -0200500 unsigned short id;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800501 id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
Paulo Zanoni17a303e2012-11-20 15:12:07 -0200502 dev_priv->pch_id = id;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800503
Jesse Barnes90711d52011-04-28 14:48:02 -0700504 if (id == INTEL_PCH_IBX_DEVICE_ID_TYPE) {
505 dev_priv->pch_type = PCH_IBX;
506 DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100507 WARN_ON(!IS_GEN5(dev));
Jesse Barnes90711d52011-04-28 14:48:02 -0700508 } else if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800509 dev_priv->pch_type = PCH_CPT;
510 DRM_DEBUG_KMS("Found CougarPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100511 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
Jesse Barnesc7925132011-04-07 12:33:56 -0700512 } else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
513 /* PantherPoint is CPT compatible */
514 dev_priv->pch_type = PCH_CPT;
515 DRM_DEBUG_KMS("Found PatherPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100516 WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
Eugeni Dodonoveb877eb2012-03-29 12:32:20 -0300517 } else if (id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
518 dev_priv->pch_type = PCH_LPT;
519 DRM_DEBUG_KMS("Found LynxPoint PCH\n");
Daniel Vetter7fcb83c2012-10-31 22:52:27 +0100520 WARN_ON(!IS_HASWELL(dev));
Paulo Zanoni08e14132013-04-12 18:16:54 -0300521 WARN_ON(IS_ULT(dev));
Wei Shun Changae6935d2012-11-12 18:54:13 -0200522 } else if (id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
523 dev_priv->pch_type = PCH_LPT;
Wei Shun Changae6935d2012-11-12 18:54:13 -0200524 DRM_DEBUG_KMS("Found LynxPoint LP PCH\n");
525 WARN_ON(!IS_HASWELL(dev));
Paulo Zanoni08e14132013-04-12 18:16:54 -0300526 WARN_ON(!IS_ULT(dev));
Rui Guo6a9c4b32013-06-19 21:10:23 +0800527 } else {
528 goto check_next;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800529 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800530 pci_dev_put(pch);
531 break;
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800532 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800533check_next:
534 pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, curr);
535 pci_dev_put(curr);
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800536 }
Rui Guo6a9c4b32013-06-19 21:10:23 +0800537 if (!pch)
538 DRM_DEBUG_KMS("No PCH found?\n");
Zhenyu Wang3bad0782010-04-07 16:15:53 +0800539}
540
Ben Widawsky2911a352012-04-05 14:47:36 -0700541bool i915_semaphore_is_enabled(struct drm_device *dev)
542{
543 if (INTEL_INFO(dev)->gen < 6)
544 return 0;
545
546 if (i915_semaphores >= 0)
547 return i915_semaphores;
548
Daniel Vetter59de3292012-04-02 20:48:43 +0200549#ifdef CONFIG_INTEL_IOMMU
Ben Widawsky2911a352012-04-05 14:47:36 -0700550 /* Enable semaphores on SNB when IO remapping is off */
Daniel Vetter59de3292012-04-02 20:48:43 +0200551 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
552 return false;
553#endif
Ben Widawsky2911a352012-04-05 14:47:36 -0700554
555 return 1;
556}
557
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100558static int i915_drm_freeze(struct drm_device *dev)
559{
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100560 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes24576d22013-03-26 09:25:45 -0700561 struct drm_crtc *crtc;
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100562
Zhang Ruib8efb172013-02-05 15:41:53 +0800563 /* ignore lid events during suspend */
564 mutex_lock(&dev_priv->modeset_restore_lock);
565 dev_priv->modeset_restore = MODESET_SUSPENDED;
566 mutex_unlock(&dev_priv->modeset_restore_lock);
567
Paulo Zanonic67a4702013-08-19 13:18:09 -0300568 /* We do a lot of poking in a lot of registers, make sure they work
569 * properly. */
570 hsw_disable_package_c8(dev_priv);
Paulo Zanonicb107992013-01-25 16:59:15 -0200571 intel_set_power_well(dev, true);
572
Dave Airlie5bcf7192010-12-07 09:20:40 +1000573 drm_kms_helper_poll_disable(dev);
574
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100575 pci_save_state(dev->pdev);
576
577 /* If KMS is active, we do the leavevt stuff here */
578 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200579 int error;
580
581 mutex_lock(&dev->struct_mutex);
582 error = i915_gem_idle(dev);
583 mutex_unlock(&dev->struct_mutex);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100584 if (error) {
585 dev_err(&dev->pdev->dev,
586 "GEM idle failed, resume might fail\n");
587 return error;
588 }
Daniel Vettera261b242012-07-26 19:21:47 +0200589
Jesse Barnes1a01ab32012-11-02 11:14:00 -0700590 cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
591
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100592 drm_irq_uninstall(dev);
Daniel Vetter15239092013-03-05 09:50:58 +0100593 dev_priv->enable_hotplug_processing = false;
Jesse Barnes24576d22013-03-26 09:25:45 -0700594 /*
595 * Disable CRTCs directly since we want to preserve sw state
596 * for _thaw.
597 */
598 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
599 dev_priv->display.crtc_disable(crtc);
Imre Deak7d708ee2013-04-17 14:04:50 +0300600
601 intel_modeset_suspend_hw(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100602 }
603
604 i915_save_state(dev);
605
Chris Wilson44834a62010-08-19 16:09:23 +0100606 intel_opregion_fini(dev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100607
Dave Airlie3fa016a2012-03-28 10:48:49 +0100608 console_lock();
Damien Lespiaub6f3eff2013-06-10 15:48:09 +0100609 intel_fbdev_set_suspend(dev, FBINFO_STATE_SUSPENDED);
Dave Airlie3fa016a2012-03-28 10:48:49 +0100610 console_unlock();
611
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100612 return 0;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100613}
614
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000615int i915_suspend(struct drm_device *dev, pm_message_t state)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100616{
617 int error;
618
619 if (!dev || !dev->dev_private) {
620 DRM_ERROR("dev: %p\n", dev);
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700621 DRM_ERROR("DRM not initialized, aborting suspend.\n");
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000622 return -ENODEV;
623 }
624
Dave Airlieb932ccb2008-02-20 10:02:20 +1000625 if (state.event == PM_EVENT_PRETHAW)
626 return 0;
627
Dave Airlie5bcf7192010-12-07 09:20:40 +1000628
629 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
630 return 0;
Chris Wilson6eecba32010-09-08 09:45:11 +0100631
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100632 error = i915_drm_freeze(dev);
633 if (error)
634 return error;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000635
Dave Airlieb932ccb2008-02-20 10:02:20 +1000636 if (state.event == PM_EVENT_SUSPEND) {
637 /* Shut down the device */
638 pci_disable_device(dev->pdev);
639 pci_set_power_state(dev->pdev, PCI_D3hot);
640 }
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000641
642 return 0;
643}
644
Jesse Barnes073f34d2012-11-02 11:13:59 -0700645void intel_console_resume(struct work_struct *work)
646{
647 struct drm_i915_private *dev_priv =
648 container_of(work, struct drm_i915_private,
649 console_resume_work);
650 struct drm_device *dev = dev_priv->dev;
651
652 console_lock();
Damien Lespiaub6f3eff2013-06-10 15:48:09 +0100653 intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING);
Jesse Barnes073f34d2012-11-02 11:13:59 -0700654 console_unlock();
655}
656
Jesse Barnesbb60b962013-03-26 09:25:46 -0700657static void intel_resume_hotplug(struct drm_device *dev)
658{
659 struct drm_mode_config *mode_config = &dev->mode_config;
660 struct intel_encoder *encoder;
661
662 mutex_lock(&mode_config->mutex);
663 DRM_DEBUG_KMS("running encoder hotplug functions\n");
664
665 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
666 if (encoder->hot_plug)
667 encoder->hot_plug(encoder);
668
669 mutex_unlock(&mode_config->mutex);
670
671 /* Just fire off a uevent and let userspace tell us what to do */
672 drm_helper_hpd_irq_event(dev);
673}
674
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700675static int __i915_drm_thaw(struct drm_device *dev)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000676{
Jesse Barnes5669fca2009-02-17 15:13:31 -0800677 struct drm_i915_private *dev_priv = dev->dev_private;
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100678 int error = 0;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100679
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100680 i915_restore_state(dev);
Chris Wilson44834a62010-08-19 16:09:23 +0100681 intel_opregion_setup(dev);
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100682
Jesse Barnes5669fca2009-02-17 15:13:31 -0800683 /* KMS EnterVT equivalent */
684 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Paulo Zanonidde86e22012-12-01 12:04:25 -0200685 intel_init_pch_refclk(dev);
Chris Wilson1833b132012-05-09 11:56:28 +0100686
Jesse Barnes5669fca2009-02-17 15:13:31 -0800687 mutex_lock(&dev->struct_mutex);
Jesse Barnes5669fca2009-02-17 15:13:31 -0800688
Daniel Vetterf691e2f2012-02-02 09:58:12 +0100689 error = i915_gem_init_hw(dev);
Jesse Barnes5669fca2009-02-17 15:13:31 -0800690 mutex_unlock(&dev->struct_mutex);
Jesse Barnes226485e2009-02-23 15:41:09 -0800691
Daniel Vetter15239092013-03-05 09:50:58 +0100692 /* We need working interrupts for modeset enabling ... */
693 drm_irq_install(dev);
694
Chris Wilson1833b132012-05-09 11:56:28 +0100695 intel_modeset_init_hw(dev);
Jesse Barnes24576d22013-03-26 09:25:45 -0700696
697 drm_modeset_lock_all(dev);
698 intel_modeset_setup_hw_state(dev, true);
699 drm_modeset_unlock_all(dev);
Daniel Vetter15239092013-03-05 09:50:58 +0100700
701 /*
702 * ... but also need to make sure that hotplug processing
703 * doesn't cause havoc. Like in the driver load code we don't
704 * bother with the tiny race here where we might loose hotplug
705 * notifications.
706 * */
Daniel Vetter20afbda2012-12-11 14:05:07 +0100707 intel_hpd_init(dev);
Daniel Vetter15239092013-03-05 09:50:58 +0100708 dev_priv->enable_hotplug_processing = true;
Jesse Barnesbb60b962013-03-26 09:25:46 -0700709 /* Config may have changed between suspend and resume */
710 intel_resume_hotplug(dev);
Jesse Barnesd5bb0812011-01-05 12:01:26 -0800711 }
Jesse Barnes1daed3f2011-01-05 12:01:25 -0800712
Chris Wilson44834a62010-08-19 16:09:23 +0100713 intel_opregion_init(dev);
714
Jesse Barnes073f34d2012-11-02 11:13:59 -0700715 /*
716 * The console lock can be pretty contented on resume due
717 * to all the printk activity. Try to keep it out of the hot
718 * path of resume if possible.
719 */
720 if (console_trylock()) {
Damien Lespiaub6f3eff2013-06-10 15:48:09 +0100721 intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING);
Jesse Barnes073f34d2012-11-02 11:13:59 -0700722 console_unlock();
723 } else {
724 schedule_work(&dev_priv->console_resume_work);
725 }
726
Paulo Zanonic67a4702013-08-19 13:18:09 -0300727 /* Undo what we did at i915_drm_freeze so the refcount goes back to the
728 * expected level. */
729 hsw_enable_package_c8(dev_priv);
730
Zhang Ruib8efb172013-02-05 15:41:53 +0800731 mutex_lock(&dev_priv->modeset_restore_lock);
732 dev_priv->modeset_restore = MODESET_DONE;
733 mutex_unlock(&dev_priv->modeset_restore_lock);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100734 return error;
735}
736
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700737static int i915_drm_thaw(struct drm_device *dev)
738{
739 int error = 0;
740
Chris Wilson907b28c2013-07-19 20:36:52 +0100741 intel_uncore_sanitize(dev);
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700742
743 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
744 mutex_lock(&dev->struct_mutex);
745 i915_gem_restore_gtt_mappings(dev);
746 mutex_unlock(&dev->struct_mutex);
747 }
748
749 __i915_drm_thaw(dev);
750
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100751 return error;
752}
753
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000754int i915_resume(struct drm_device *dev)
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100755{
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700756 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6eecba32010-09-08 09:45:11 +0100757 int ret;
758
Dave Airlie5bcf7192010-12-07 09:20:40 +1000759 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
760 return 0;
761
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100762 if (pci_enable_device(dev->pdev))
763 return -EIO;
764
765 pci_set_master(dev->pdev);
766
Chris Wilson907b28c2013-07-19 20:36:52 +0100767 intel_uncore_sanitize(dev);
Jesse Barnes1abd02e2012-11-02 11:14:02 -0700768
769 /*
770 * Platforms with opregion should have sane BIOS, older ones (gen3 and
771 * earlier) need this since the BIOS might clear all our scratch PTEs.
772 */
773 if (drm_core_check_feature(dev, DRIVER_MODESET) &&
774 !dev_priv->opregion.header) {
775 mutex_lock(&dev->struct_mutex);
776 i915_gem_restore_gtt_mappings(dev);
777 mutex_unlock(&dev->struct_mutex);
778 }
779
780 ret = __i915_drm_thaw(dev);
Chris Wilson6eecba32010-09-08 09:45:11 +0100781 if (ret)
782 return ret;
783
784 drm_kms_helper_poll_enable(dev);
785 return 0;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000786}
787
Ben Gamari11ed50e2009-09-14 17:48:45 -0400788/**
Eugeni Dodonovf3953dc2011-11-28 16:15:17 -0200789 * i915_reset - reset chip after a hang
Ben Gamari11ed50e2009-09-14 17:48:45 -0400790 * @dev: drm device to reset
Ben Gamari11ed50e2009-09-14 17:48:45 -0400791 *
792 * Reset the chip. Useful if a hang is detected. Returns zero on successful
793 * reset or otherwise an error code.
794 *
795 * Procedure is fairly simple:
796 * - reset the chip using the reset reg
797 * - re-init context state
798 * - re-init hardware status page
799 * - re-init ring buffer
800 * - re-init interrupt state
801 * - re-init display
802 */
Daniel Vetterd4b8bb22012-04-27 15:17:44 +0200803int i915_reset(struct drm_device *dev)
Ben Gamari11ed50e2009-09-14 17:48:45 -0400804{
805 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100806 bool simulated;
Kenneth Graunke0573ed42010-09-11 03:17:19 -0700807 int ret;
Ben Gamari11ed50e2009-09-14 17:48:45 -0400808
Chris Wilsond78cb502010-12-23 13:33:15 +0000809 if (!i915_try_reset)
810 return 0;
811
Daniel Vetterd54a02c2012-07-04 22:18:39 +0200812 mutex_lock(&dev->struct_mutex);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400813
Chris Wilson069efc12010-09-30 16:53:18 +0100814 i915_gem_reset(dev);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400815
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100816 simulated = dev_priv->gpu_error.stop_rings != 0;
817
818 if (!simulated && get_seconds() - dev_priv->gpu_error.last_reset < 5) {
Chris Wilsonae681d92010-10-01 14:57:56 +0100819 DRM_ERROR("GPU hanging too fast, declaring wedged!\n");
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100820 ret = -ENODEV;
821 } else {
Daniel Vetterd4b8bb22012-04-27 15:17:44 +0200822 ret = intel_gpu_reset(dev);
Daniel Vetter350d2702012-04-27 15:17:42 +0200823
Chris Wilson2e7c8ee2013-05-28 10:38:44 +0100824 /* Also reset the gpu hangman. */
825 if (simulated) {
826 DRM_INFO("Simulated gpu hang, resetting stop_rings\n");
827 dev_priv->gpu_error.stop_rings = 0;
828 if (ret == -ENODEV) {
829 DRM_ERROR("Reset not implemented, but ignoring "
830 "error for simulated gpu hangs\n");
831 ret = 0;
832 }
833 } else
834 dev_priv->gpu_error.last_reset = get_seconds();
835 }
Kenneth Graunke0573ed42010-09-11 03:17:19 -0700836 if (ret) {
Chris Wilsonf803aa52010-09-19 12:38:26 +0100837 DRM_ERROR("Failed to reset chip.\n");
Daniel J Bluemanf953c932010-05-17 14:23:52 +0100838 mutex_unlock(&dev->struct_mutex);
Chris Wilsonf803aa52010-09-19 12:38:26 +0100839 return ret;
Ben Gamari11ed50e2009-09-14 17:48:45 -0400840 }
841
842 /* Ok, now get things going again... */
843
844 /*
845 * Everything depends on having the GTT running, so we need to start
846 * there. Fortunately we don't need to do this unless we reset the
847 * chip at a PCI level.
848 *
849 * Next we need to restore the context, but we don't use those
850 * yet either...
851 *
852 * Ring buffer needs to be re-initialized in the KMS case, or if X
853 * was running at the time of the reset (i.e. we weren't VT
854 * switched away).
855 */
856 if (drm_core_check_feature(dev, DRIVER_MODESET) ||
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200857 !dev_priv->ums.mm_suspended) {
Chris Wilsonb4519512012-05-11 14:29:30 +0100858 struct intel_ring_buffer *ring;
859 int i;
860
Daniel Vetterdb1b76c2013-07-09 16:51:37 +0200861 dev_priv->ums.mm_suspended = 0;
Eric Anholt75a68982010-11-18 09:31:13 +0800862
Daniel Vetterf691e2f2012-02-02 09:58:12 +0100863 i915_gem_init_swizzling(dev);
864
Chris Wilsonb4519512012-05-11 14:29:30 +0100865 for_each_ring(ring, dev_priv, i)
866 ring->init(ring);
Eric Anholt75a68982010-11-18 09:31:13 +0800867
Ben Widawsky254f9652012-06-04 14:42:42 -0700868 i915_gem_context_init(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -0700869 if (dev_priv->mm.aliasing_ppgtt) {
870 ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
871 if (ret)
872 i915_gem_cleanup_aliasing_ppgtt(dev);
873 }
Daniel Vettere21af882012-02-09 20:53:27 +0100874
Daniel Vetter8e88a2b2012-06-19 18:40:00 +0200875 /*
876 * It would make sense to re-init all the other hw state, at
877 * least the rps/rc6/emon init done within modeset_init_hw. For
878 * some unknown reason, this blows up my ilk, so don't.
879 */
Daniel Vetterf8175862012-04-10 15:50:11 +0200880
Daniel Vetter8e88a2b2012-06-19 18:40:00 +0200881 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf8175862012-04-10 15:50:11 +0200882
Ben Gamari11ed50e2009-09-14 17:48:45 -0400883 drm_irq_uninstall(dev);
884 drm_irq_install(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +0100885 intel_hpd_init(dev);
Daniel Vetterbcbc3242012-04-27 15:17:41 +0200886 } else {
887 mutex_unlock(&dev->struct_mutex);
Ben Gamari11ed50e2009-09-14 17:48:45 -0400888 }
889
Ben Gamari11ed50e2009-09-14 17:48:45 -0400890 return 0;
891}
892
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -0800893static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500894{
Daniel Vetter01a06852012-06-25 15:58:49 +0200895 struct intel_device_info *intel_info =
896 (struct intel_device_info *) ent->driver_data;
897
Chris Wilson5fe49d82011-02-01 19:43:02 +0000898 /* Only bind to function 0 of the device. Early generations
899 * used function 1 as a placeholder for multi-head. This causes
900 * us confusion instead, especially on the systems where both
901 * functions have the same PCI-ID!
902 */
903 if (PCI_FUNC(pdev->devfn))
904 return -ENODEV;
905
Daniel Vetter01a06852012-06-25 15:58:49 +0200906 /* We've managed to ship a kms-enabled ddx that shipped with an XvMC
907 * implementation for gen3 (and only gen3) that used legacy drm maps
908 * (gasp!) to share buffers between X and the client. Hence we need to
909 * keep around the fake agp stuff for gen3, even when kms is enabled. */
910 if (intel_info->gen != 3) {
911 driver.driver_features &=
912 ~(DRIVER_USE_AGP | DRIVER_REQUIRE_AGP);
913 } else if (!intel_agp_enabled) {
914 DRM_ERROR("drm/i915 can't work without intel_agp module!\n");
915 return -ENODEV;
916 }
917
Jordan Crousedcdb1672010-05-27 13:40:25 -0600918 return drm_get_pci_dev(pdev, ent, &driver);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500919}
920
921static void
922i915_pci_remove(struct pci_dev *pdev)
923{
924 struct drm_device *dev = pci_get_drvdata(pdev);
925
926 drm_put_dev(dev);
927}
928
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100929static int i915_pm_suspend(struct device *dev)
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500930{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100931 struct pci_dev *pdev = to_pci_dev(dev);
932 struct drm_device *drm_dev = pci_get_drvdata(pdev);
933 int error;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500934
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100935 if (!drm_dev || !drm_dev->dev_private) {
936 dev_err(dev, "DRM not initialized, aborting suspend.\n");
937 return -ENODEV;
938 }
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500939
Dave Airlie5bcf7192010-12-07 09:20:40 +1000940 if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
941 return 0;
942
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100943 error = i915_drm_freeze(drm_dev);
944 if (error)
945 return error;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500946
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100947 pci_disable_device(pdev);
948 pci_set_power_state(pdev, PCI_D3hot);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800949
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800950 return 0;
951}
952
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100953static int i915_pm_resume(struct device *dev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800954{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100955 struct pci_dev *pdev = to_pci_dev(dev);
956 struct drm_device *drm_dev = pci_get_drvdata(pdev);
957
958 return i915_resume(drm_dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800959}
960
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100961static int i915_pm_freeze(struct device *dev)
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800962{
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100963 struct pci_dev *pdev = to_pci_dev(dev);
964 struct drm_device *drm_dev = pci_get_drvdata(pdev);
965
966 if (!drm_dev || !drm_dev->dev_private) {
967 dev_err(dev, "DRM not initialized, aborting suspend.\n");
968 return -ENODEV;
969 }
970
971 return i915_drm_freeze(drm_dev);
972}
973
974static int i915_pm_thaw(struct device *dev)
975{
976 struct pci_dev *pdev = to_pci_dev(dev);
977 struct drm_device *drm_dev = pci_get_drvdata(pdev);
978
979 return i915_drm_thaw(drm_dev);
980}
981
982static int i915_pm_poweroff(struct device *dev)
983{
984 struct pci_dev *pdev = to_pci_dev(dev);
985 struct drm_device *drm_dev = pci_get_drvdata(pdev);
Rafael J. Wysocki84b79f82010-02-07 21:48:24 +0100986
Rafael J. Wysocki61caf872010-02-18 23:06:27 +0100987 return i915_drm_freeze(drm_dev);
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800988}
989
Chris Wilsonb4b78d12010-06-06 15:40:20 +0100990static const struct dev_pm_ops i915_pm_ops = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400991 .suspend = i915_pm_suspend,
992 .resume = i915_pm_resume,
993 .freeze = i915_pm_freeze,
994 .thaw = i915_pm_thaw,
995 .poweroff = i915_pm_poweroff,
996 .restore = i915_pm_resume,
Zhenyu Wangcbda12d2009-12-16 13:36:10 +0800997};
998
Laurent Pinchart78b68552012-05-17 13:27:22 +0200999static const struct vm_operations_struct i915_gem_vm_ops = {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001000 .fault = i915_gem_fault,
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001001 .open = drm_gem_vm_open,
1002 .close = drm_gem_vm_close,
Jesse Barnesde151cf2008-11-12 10:03:55 -08001003};
1004
Arjan van de Vene08e96d2011-10-31 07:28:57 -07001005static const struct file_operations i915_driver_fops = {
1006 .owner = THIS_MODULE,
1007 .open = drm_open,
1008 .release = drm_release,
1009 .unlocked_ioctl = drm_ioctl,
1010 .mmap = drm_gem_mmap,
1011 .poll = drm_poll,
Arjan van de Vene08e96d2011-10-31 07:28:57 -07001012 .read = drm_read,
1013#ifdef CONFIG_COMPAT
1014 .compat_ioctl = i915_compat_ioctl,
1015#endif
1016 .llseek = noop_llseek,
1017};
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019static struct drm_driver driver = {
Michael Witten0c547812011-08-25 17:55:54 +00001020 /* Don't use MTRRs here; the Xserver or userspace app should
1021 * deal with them for Intel hardware.
Dave Airlie792d2b92005-11-11 23:30:27 +11001022 */
Eric Anholt673a3942008-07-30 12:06:12 -07001023 .driver_features =
Daniel Vetter28185642013-08-08 15:41:27 +02001024 DRIVER_USE_AGP | DRIVER_REQUIRE_AGP |
Kristian Høgsberg10ba5012013-08-25 18:29:01 +02001025 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME |
1026 DRIVER_RENDER,
Dave Airlie22eae942005-11-10 22:16:34 +11001027 .load = i915_driver_load,
Jesse Barnesba8bbcf2007-11-22 14:14:14 +10001028 .unload = i915_driver_unload,
Eric Anholt673a3942008-07-30 12:06:12 -07001029 .open = i915_driver_open,
Dave Airlie22eae942005-11-10 22:16:34 +11001030 .lastclose = i915_driver_lastclose,
1031 .preclose = i915_driver_preclose,
Eric Anholt673a3942008-07-30 12:06:12 -07001032 .postclose = i915_driver_postclose,
Rafael J. Wysockid8e29202010-01-09 00:45:33 +01001033
1034 /* Used in place of i915_pm_ops for non-DRIVER_MODESET */
1035 .suspend = i915_suspend,
1036 .resume = i915_resume,
1037
Dave Airliecda17382005-07-10 17:31:26 +10001038 .device_is_agp = i915_driver_device_is_agp,
Dave Airlie7c1c2872008-11-28 14:22:24 +10001039 .master_create = i915_master_create,
1040 .master_destroy = i915_master_destroy,
Ben Gamari955b12d2009-02-17 20:08:49 -05001041#if defined(CONFIG_DEBUG_FS)
Ben Gamari27c202a2009-07-01 22:26:52 -04001042 .debugfs_init = i915_debugfs_init,
1043 .debugfs_cleanup = i915_debugfs_cleanup,
Ben Gamari955b12d2009-02-17 20:08:49 -05001044#endif
Eric Anholt673a3942008-07-30 12:06:12 -07001045 .gem_init_object = i915_gem_init_object,
1046 .gem_free_object = i915_gem_free_object,
Jesse Barnesde151cf2008-11-12 10:03:55 -08001047 .gem_vm_ops = &i915_gem_vm_ops,
Daniel Vetter1286ff72012-05-10 15:25:09 +02001048
1049 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
1050 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
1051 .gem_prime_export = i915_gem_prime_export,
1052 .gem_prime_import = i915_gem_prime_import,
1053
Dave Airlieff72145b2011-02-07 12:16:14 +10001054 .dumb_create = i915_gem_dumb_create,
1055 .dumb_map_offset = i915_gem_mmap_gtt,
Daniel Vetter43387b32013-07-16 09:12:04 +02001056 .dumb_destroy = drm_gem_dumb_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 .ioctls = i915_ioctls,
Arjan van de Vene08e96d2011-10-31 07:28:57 -07001058 .fops = &i915_driver_fops,
Dave Airlie22eae942005-11-10 22:16:34 +11001059 .name = DRIVER_NAME,
1060 .desc = DRIVER_DESC,
1061 .date = DRIVER_DATE,
1062 .major = DRIVER_MAJOR,
1063 .minor = DRIVER_MINOR,
1064 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065};
1066
Dave Airlie8410ea32010-12-15 03:16:38 +10001067static struct pci_driver i915_pci_driver = {
1068 .name = DRIVER_NAME,
1069 .id_table = pciidlist,
1070 .probe = i915_pci_probe,
1071 .remove = i915_pci_remove,
1072 .driver.pm = &i915_pm_ops,
1073};
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075static int __init i915_init(void)
1076{
1077 driver.num_ioctls = i915_max_ioctl;
Jesse Barnes79e53942008-11-07 14:24:08 -08001078
1079 /*
1080 * If CONFIG_DRM_I915_KMS is set, default to KMS unless
1081 * explicitly disabled with the module pararmeter.
1082 *
1083 * Otherwise, just follow the parameter (defaulting to off).
1084 *
1085 * Allow optional vga_text_mode_force boot option to override
1086 * the default behavior.
1087 */
1088#if defined(CONFIG_DRM_I915_KMS)
1089 if (i915_modeset != 0)
1090 driver.driver_features |= DRIVER_MODESET;
1091#endif
1092 if (i915_modeset == 1)
1093 driver.driver_features |= DRIVER_MODESET;
1094
1095#ifdef CONFIG_VGA_CONSOLE
1096 if (vgacon_text_force() && i915_modeset == -1)
1097 driver.driver_features &= ~DRIVER_MODESET;
1098#endif
1099
Chris Wilson3885c6b2011-01-23 10:45:14 +00001100 if (!(driver.driver_features & DRIVER_MODESET))
1101 driver.get_vblank_timestamp = NULL;
1102
Dave Airlie8410ea32010-12-15 03:16:38 +10001103 return drm_pci_init(&driver, &i915_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
1106static void __exit i915_exit(void)
1107{
Dave Airlie8410ea32010-12-15 03:16:38 +10001108 drm_pci_exit(&driver, &i915_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
1111module_init(i915_init);
1112module_exit(i915_exit);
1113
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001114MODULE_AUTHOR(DRIVER_AUTHOR);
1115MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116MODULE_LICENSE("GPL and additional rights");