2005-04-17 02:20:36 +04:00
|
|
|
/* i915_drv.c -- i830,i845,i855,i865,i915 driver -*- linux-c -*-
|
|
|
|
*/
|
2006-01-02 12:14:23 +03:00
|
|
|
/*
|
2005-06-23 16:46:46 +04:00
|
|
|
*
|
2005-04-17 02:20:36 +04:00
|
|
|
* Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
|
|
|
|
* All Rights Reserved.
|
2005-06-23 16:46:46 +04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
|
|
|
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
2006-01-02 12:14:23 +03:00
|
|
|
*/
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2009-02-18 02:13:31 +03:00
|
|
|
#include <linux/device.h>
|
2014-06-12 19:35:47 +04:00
|
|
|
#include <linux/acpi.h>
|
2012-10-02 21:01:07 +04:00
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/i915_drm.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include "i915_drv.h"
|
2012-07-02 18:51:02 +04:00
|
|
|
#include "i915_trace.h"
|
2010-09-11 12:19:14 +04:00
|
|
|
#include "intel_drv.h"
|
2005-04-17 02:20:36 +04:00
|
|
|
|
DRM: i915: add mode setting support
This commit adds i915 driver support for the DRM mode setting APIs.
Currently, VGA, LVDS, SDVO DVI & VGA, TV and DVO LVDS outputs are
supported. HDMI, DisplayPort and additional SDVO output support will
follow.
Support for the mode setting code is controlled by the new 'modeset'
module option. A new config option, CONFIG_DRM_I915_KMS controls the
default behavior, and whether a PCI ID list is built into the module for
use by user level module utilities.
Note that if mode setting is enabled, user level drivers that access
display registers directly or that don't use the kernel graphics memory
manager will likely corrupt kernel graphics memory, disrupt output
configuration (possibly leading to hangs and/or blank displays), and
prevent panic/oops messages from appearing. So use caution when
enabling this code; be sure your user level code supports the new
interfaces.
A new SysRq key, 'g', provides emergency support for switching back to
the kernel's framebuffer console; which is useful for testing.
Co-authors: Dave Airlie <airlied@linux.ie>, Hong Liu <hong.liu@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2008-11-08 01:24:08 +03:00
|
|
|
#include <linux/console.h>
|
2011-08-30 19:04:30 +04:00
|
|
|
#include <linux/module.h>
|
2014-05-07 20:57:49 +04:00
|
|
|
#include <linux/pm_runtime.h>
|
2012-10-02 21:01:07 +04:00
|
|
|
#include <drm/drm_crtc_helper.h>
|
DRM: i915: add mode setting support
This commit adds i915 driver support for the DRM mode setting APIs.
Currently, VGA, LVDS, SDVO DVI & VGA, TV and DVO LVDS outputs are
supported. HDMI, DisplayPort and additional SDVO output support will
follow.
Support for the mode setting code is controlled by the new 'modeset'
module option. A new config option, CONFIG_DRM_I915_KMS controls the
default behavior, and whether a PCI ID list is built into the module for
use by user level module utilities.
Note that if mode setting is enabled, user level drivers that access
display registers directly or that don't use the kernel graphics memory
manager will likely corrupt kernel graphics memory, disrupt output
configuration (possibly leading to hangs and/or blank displays), and
prevent panic/oops messages from appearing. So use caution when
enabling this code; be sure your user level code supports the new
interfaces.
A new SysRq key, 'g', provides emergency support for switching back to
the kernel's framebuffer console; which is useful for testing.
Co-authors: Dave Airlie <airlied@linux.ie>, Hong Liu <hong.liu@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2008-11-08 01:24:08 +03:00
|
|
|
|
2009-01-05 00:55:33 +03:00
|
|
|
static struct drm_driver driver;
|
|
|
|
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
#define GEN_DEFAULT_PIPEOFFSETS \
|
|
|
|
.pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
|
|
|
|
PIPE_C_OFFSET, PIPE_EDP_OFFSET }, \
|
|
|
|
.trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
|
|
|
|
TRANSCODER_C_OFFSET, TRANSCODER_EDP_OFFSET }, \
|
|
|
|
.palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET }
|
|
|
|
|
2014-04-28 15:00:42 +04:00
|
|
|
#define GEN_CHV_PIPEOFFSETS \
|
|
|
|
.pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \
|
|
|
|
CHV_PIPE_C_OFFSET }, \
|
|
|
|
.trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \
|
|
|
|
CHV_TRANSCODER_C_OFFSET, }, \
|
|
|
|
.palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET, \
|
|
|
|
CHV_PALETTE_C_OFFSET }
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
|
2014-04-09 14:28:53 +04:00
|
|
|
#define CURSOR_OFFSETS \
|
|
|
|
.cursor_offsets = { CURSOR_A_OFFSET, CURSOR_B_OFFSET, CHV_CURSOR_C_OFFSET }
|
|
|
|
|
|
|
|
#define IVB_CURSOR_OFFSETS \
|
|
|
|
.cursor_offsets = { CURSOR_A_OFFSET, IVB_CURSOR_B_OFFSET, IVB_CURSOR_C_OFFSET }
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_i830_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 2, .is_mobile = 1, .cursor_needs_physical = 1, .num_pipes = 2,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1, .overlay_needs_physical = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_845g_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 2, .num_pipes = 1,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1, .overlay_needs_physical = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_i85x_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 2, .is_i85x = 1, .is_mobile = 1, .num_pipes = 2,
|
2010-04-15 22:03:30 +04:00
|
|
|
.cursor_needs_physical = 1,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1, .overlay_needs_physical = 1,
|
2013-11-28 19:30:02 +04:00
|
|
|
.has_fbc = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_i865g_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 2, .num_pipes = 1,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1, .overlay_needs_physical = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_i915g_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 3, .is_i915g = 1, .cursor_needs_physical = 1, .num_pipes = 2,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1, .overlay_needs_physical = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_i915gm_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 3, .is_mobile = 1, .num_pipes = 2,
|
2009-12-16 23:16:17 +03:00
|
|
|
.cursor_needs_physical = 1,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1, .overlay_needs_physical = 1,
|
2010-09-17 03:32:17 +04:00
|
|
|
.supports_tv = 1,
|
2013-11-28 19:30:02 +04:00
|
|
|
.has_fbc = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_i945g_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 3, .has_hotplug = 1, .cursor_needs_physical = 1, .num_pipes = 2,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1, .overlay_needs_physical = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_i945gm_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 3, .is_i945gm = 1, .is_mobile = 1, .num_pipes = 2,
|
2009-12-16 23:16:17 +03:00
|
|
|
.has_hotplug = 1, .cursor_needs_physical = 1,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1, .overlay_needs_physical = 1,
|
2010-09-17 03:32:17 +04:00
|
|
|
.supports_tv = 1,
|
2013-11-28 19:30:02 +04:00
|
|
|
.has_fbc = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_i965g_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 4, .is_broadwater = 1, .num_pipes = 2,
|
2010-08-11 12:59:24 +04:00
|
|
|
.has_hotplug = 1,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_i965gm_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 4, .is_crestline = 1, .num_pipes = 2,
|
2010-12-05 19:49:51 +03:00
|
|
|
.is_mobile = 1, .has_fbc = 1, .has_hotplug = 1,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1,
|
2010-09-17 03:32:17 +04:00
|
|
|
.supports_tv = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_g33_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 3, .is_g33 = 1, .num_pipes = 2,
|
2010-08-11 12:59:24 +04:00
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_g45_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 4, .is_g4x = 1, .need_gfx_hws = 1, .num_pipes = 2,
|
2010-08-11 12:59:24 +04:00
|
|
|
.has_pipe_cxsr = 1, .has_hotplug = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_gm45_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 4, .is_g4x = 1, .num_pipes = 2,
|
2010-12-05 19:49:51 +03:00
|
|
|
.is_mobile = 1, .need_gfx_hws = 1, .has_fbc = 1,
|
2010-08-11 12:59:24 +04:00
|
|
|
.has_pipe_cxsr = 1, .has_hotplug = 1,
|
2010-09-17 03:32:17 +04:00
|
|
|
.supports_tv = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_pineview_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 3, .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .num_pipes = 2,
|
2010-08-11 12:59:24 +04:00
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
2010-08-12 12:42:51 +04:00
|
|
|
.has_overlay = 1,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_ironlake_d_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 5, .num_pipes = 2,
|
2012-01-05 15:34:29 +04:00
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_ironlake_m_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 5, .is_mobile = 1, .num_pipes = 2,
|
2010-12-05 19:49:51 +03:00
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
2011-05-06 02:24:21 +04:00
|
|
|
.has_fbc = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-12-16 23:16:16 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_sandybridge_d_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 6, .num_pipes = 2,
|
2010-08-11 12:59:24 +04:00
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
2013-11-07 01:02:24 +04:00
|
|
|
.has_fbc = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING,
|
2012-01-17 20:43:53 +04:00
|
|
|
.has_llc = 1,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2009-11-02 23:08:22 +03:00
|
|
|
};
|
|
|
|
|
2010-05-20 12:33:46 +04:00
|
|
|
static const struct intel_device_info intel_sandybridge_m_info = {
|
2013-03-14 01:05:41 +04:00
|
|
|
.gen = 6, .is_mobile = 1, .num_pipes = 2,
|
2010-08-11 12:59:24 +04:00
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
2010-12-15 10:42:32 +03:00
|
|
|
.has_fbc = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING,
|
2012-01-17 20:43:53 +04:00
|
|
|
.has_llc = 1,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2010-01-08 02:08:18 +03:00
|
|
|
};
|
|
|
|
|
2013-03-15 22:17:54 +04:00
|
|
|
#define GEN7_FEATURES \
|
|
|
|
.gen = 7, .num_pipes = 3, \
|
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1, \
|
2013-11-07 01:02:24 +04:00
|
|
|
.has_fbc = 1, \
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING, \
|
2013-10-06 04:57:11 +04:00
|
|
|
.has_llc = 1
|
2013-03-15 22:17:54 +04:00
|
|
|
|
2011-04-29 01:32:07 +04:00
|
|
|
static const struct intel_device_info intel_ivybridge_d_info = {
|
2013-03-15 22:17:54 +04:00
|
|
|
GEN7_FEATURES,
|
|
|
|
.is_ivybridge = 1,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
IVB_CURSOR_OFFSETS,
|
2011-04-29 01:32:07 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct intel_device_info intel_ivybridge_m_info = {
|
2013-03-15 22:17:54 +04:00
|
|
|
GEN7_FEATURES,
|
|
|
|
.is_ivybridge = 1,
|
|
|
|
.is_mobile = 1,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
IVB_CURSOR_OFFSETS,
|
2011-04-29 01:32:07 +04:00
|
|
|
};
|
|
|
|
|
2013-04-06 00:12:45 +04:00
|
|
|
static const struct intel_device_info intel_ivybridge_q_info = {
|
|
|
|
GEN7_FEATURES,
|
|
|
|
.is_ivybridge = 1,
|
|
|
|
.num_pipes = 0, /* legal, last one wins */
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
IVB_CURSOR_OFFSETS,
|
2013-04-06 00:12:45 +04:00
|
|
|
};
|
|
|
|
|
2012-03-29 00:39:21 +04:00
|
|
|
static const struct intel_device_info intel_valleyview_m_info = {
|
2013-03-15 22:17:54 +04:00
|
|
|
GEN7_FEATURES,
|
|
|
|
.is_mobile = 1,
|
|
|
|
.num_pipes = 2,
|
2012-03-29 00:39:21 +04:00
|
|
|
.is_valleyview = 1,
|
2013-01-24 17:29:56 +04:00
|
|
|
.display_mmio_offset = VLV_DISPLAY_BASE,
|
2013-11-07 01:02:24 +04:00
|
|
|
.has_fbc = 0, /* legal, last one wins */
|
2013-04-16 08:48:03 +04:00
|
|
|
.has_llc = 0, /* legal, last one wins */
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2012-03-29 00:39:21 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct intel_device_info intel_valleyview_d_info = {
|
2013-03-15 22:17:54 +04:00
|
|
|
GEN7_FEATURES,
|
|
|
|
.num_pipes = 2,
|
2012-03-29 00:39:21 +04:00
|
|
|
.is_valleyview = 1,
|
2013-01-24 17:29:56 +04:00
|
|
|
.display_mmio_offset = VLV_DISPLAY_BASE,
|
2013-11-07 01:02:24 +04:00
|
|
|
.has_fbc = 0, /* legal, last one wins */
|
2013-04-16 08:48:03 +04:00
|
|
|
.has_llc = 0, /* legal, last one wins */
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2012-03-29 00:39:21 +04:00
|
|
|
};
|
|
|
|
|
2012-03-29 19:32:18 +04:00
|
|
|
static const struct intel_device_info intel_haswell_d_info = {
|
2013-03-15 22:17:54 +04:00
|
|
|
GEN7_FEATURES,
|
|
|
|
.is_haswell = 1,
|
2013-04-22 21:40:39 +04:00
|
|
|
.has_ddi = 1,
|
2013-04-22 21:40:41 +04:00
|
|
|
.has_fpga_dbg = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
IVB_CURSOR_OFFSETS,
|
2012-03-29 19:32:18 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct intel_device_info intel_haswell_m_info = {
|
2013-03-15 22:17:54 +04:00
|
|
|
GEN7_FEATURES,
|
|
|
|
.is_haswell = 1,
|
|
|
|
.is_mobile = 1,
|
2013-04-22 21:40:39 +04:00
|
|
|
.has_ddi = 1,
|
2013-04-22 21:40:41 +04:00
|
|
|
.has_fpga_dbg = 1,
|
2013-10-15 21:02:57 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
IVB_CURSOR_OFFSETS,
|
2011-04-29 01:32:07 +04:00
|
|
|
};
|
|
|
|
|
2013-11-04 04:47:33 +04:00
|
|
|
static const struct intel_device_info intel_broadwell_d_info = {
|
2013-11-03 08:07:32 +04:00
|
|
|
.gen = 8, .num_pipes = 3,
|
2013-11-04 04:47:33 +04:00
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
|
|
|
|
.has_llc = 1,
|
|
|
|
.has_ddi = 1,
|
2014-07-17 00:49:30 +04:00
|
|
|
.has_fpga_dbg = 1,
|
2014-02-21 04:01:20 +04:00
|
|
|
.has_fbc = 1,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
IVB_CURSOR_OFFSETS,
|
2013-11-04 04:47:33 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct intel_device_info intel_broadwell_m_info = {
|
2013-11-03 08:07:32 +04:00
|
|
|
.gen = 8, .is_mobile = 1, .num_pipes = 3,
|
2013-11-04 04:47:33 +04:00
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
|
|
|
|
.has_llc = 1,
|
|
|
|
.has_ddi = 1,
|
2014-07-17 00:49:30 +04:00
|
|
|
.has_fpga_dbg = 1,
|
2014-02-21 04:01:20 +04:00
|
|
|
.has_fbc = 1,
|
drm/i915: Reorganize display pipe register accesses
RFCv2: Reorganize array indexing so that full offsets can be used as
is. It makes grepping for registers in i915_reg.h much easier. Also
move offset arrays to intel_device_info.
v1: Fixed offsets for VLV, proper eDP handling
v2: Fixed BCLRPAT, PIPESRC, PIPECONF and DSP* macros.
v3: Added EDP pipe comment, removed redundant offset arrays for
MSA_MISC and DDI_FUNC_CTL.
v4: Rename patch and report object size increase.
v5: Change location of commas, add PIPE_EDP into enum pipe
v6: Insert PIPE_EDP_OFFSET into pipe offset array
v7: Set I915_MAX_PIPES back to 3, change more registers accessors
to use the new macros, get rid of _PIPE_INC and add dev_priv
as a parameter where required by the new macros.
Upcoming hardware will not have the various display pipe register
ranges evenly spaced in memory. Change register address calculations
into array lookups.
Tested on SNB, VLV, IVB, Gen2 and HSW w/eDP.
I left the UMS cruft untouched.
Size differences:
text data bss dec hex filename
596431 4634 56 601121 92c21 i915.ko (new)
593199 4634 56 597889 91f81 i915.ko (old)
Signed-off-by: Antti Koskipaa <antti.koskipaa@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-02-04 16:22:24 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-06-05 04:09:30 +04:00
|
|
|
IVB_CURSOR_OFFSETS,
|
2013-11-04 04:47:33 +04:00
|
|
|
};
|
|
|
|
|
2014-04-17 06:37:35 +04:00
|
|
|
static const struct intel_device_info intel_broadwell_gt3d_info = {
|
|
|
|
.gen = 8, .num_pipes = 3,
|
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
2014-04-17 06:37:37 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
|
2014-04-17 06:37:35 +04:00
|
|
|
.has_llc = 1,
|
|
|
|
.has_ddi = 1,
|
2014-07-17 00:49:30 +04:00
|
|
|
.has_fpga_dbg = 1,
|
2014-04-17 06:37:35 +04:00
|
|
|
.has_fbc = 1,
|
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-06-05 04:09:30 +04:00
|
|
|
IVB_CURSOR_OFFSETS,
|
2014-04-17 06:37:35 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct intel_device_info intel_broadwell_gt3m_info = {
|
|
|
|
.gen = 8, .is_mobile = 1, .num_pipes = 3,
|
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
2014-04-17 06:37:37 +04:00
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING,
|
2014-04-17 06:37:35 +04:00
|
|
|
.has_llc = 1,
|
|
|
|
.has_ddi = 1,
|
2014-07-17 00:49:30 +04:00
|
|
|
.has_fpga_dbg = 1,
|
2014-04-17 06:37:35 +04:00
|
|
|
.has_fbc = 1,
|
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
IVB_CURSOR_OFFSETS,
|
2014-04-17 06:37:35 +04:00
|
|
|
};
|
|
|
|
|
2014-04-09 19:19:04 +04:00
|
|
|
static const struct intel_device_info intel_cherryview_info = {
|
|
|
|
.is_preliminary = 1,
|
2014-04-09 14:28:54 +04:00
|
|
|
.gen = 8, .num_pipes = 3,
|
2014-04-09 19:19:04 +04:00
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
|
|
|
|
.is_valleyview = 1,
|
|
|
|
.display_mmio_offset = VLV_DISPLAY_BASE,
|
2014-04-28 15:00:42 +04:00
|
|
|
GEN_CHV_PIPEOFFSETS,
|
2014-04-09 14:28:53 +04:00
|
|
|
CURSOR_OFFSETS,
|
2014-04-09 19:19:04 +04:00
|
|
|
};
|
|
|
|
|
2013-02-13 19:27:37 +04:00
|
|
|
static const struct intel_device_info intel_skylake_info = {
|
|
|
|
.is_preliminary = 1,
|
2014-04-02 09:54:50 +04:00
|
|
|
.is_skylake = 1,
|
2013-02-13 19:27:37 +04:00
|
|
|
.gen = 9, .num_pipes = 3,
|
|
|
|
.need_gfx_hws = 1, .has_hotplug = 1,
|
|
|
|
.ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
|
|
|
|
.has_llc = 1,
|
|
|
|
.has_ddi = 1,
|
2014-04-24 04:13:09 +04:00
|
|
|
.has_fbc = 1,
|
2013-02-13 19:27:37 +04:00
|
|
|
GEN_DEFAULT_PIPEOFFSETS,
|
|
|
|
IVB_CURSOR_OFFSETS,
|
|
|
|
};
|
|
|
|
|
2013-07-27 00:32:51 +04:00
|
|
|
/*
|
|
|
|
* Make sure any device matches here are from most specific to most
|
|
|
|
* general. For example, since the Quanta match is based on the subsystem
|
|
|
|
* and subvendor IDs, we need it to come before the more general IVB
|
|
|
|
* PCI ID matches, otherwise we'll use the wrong info struct above.
|
|
|
|
*/
|
|
|
|
#define INTEL_PCI_IDS \
|
|
|
|
INTEL_I830_IDS(&intel_i830_info), \
|
|
|
|
INTEL_I845G_IDS(&intel_845g_info), \
|
|
|
|
INTEL_I85X_IDS(&intel_i85x_info), \
|
|
|
|
INTEL_I865G_IDS(&intel_i865g_info), \
|
|
|
|
INTEL_I915G_IDS(&intel_i915g_info), \
|
|
|
|
INTEL_I915GM_IDS(&intel_i915gm_info), \
|
|
|
|
INTEL_I945G_IDS(&intel_i945g_info), \
|
|
|
|
INTEL_I945GM_IDS(&intel_i945gm_info), \
|
|
|
|
INTEL_I965G_IDS(&intel_i965g_info), \
|
|
|
|
INTEL_G33_IDS(&intel_g33_info), \
|
|
|
|
INTEL_I965GM_IDS(&intel_i965gm_info), \
|
|
|
|
INTEL_GM45_IDS(&intel_gm45_info), \
|
|
|
|
INTEL_G45_IDS(&intel_g45_info), \
|
|
|
|
INTEL_PINEVIEW_IDS(&intel_pineview_info), \
|
|
|
|
INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info), \
|
|
|
|
INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info), \
|
|
|
|
INTEL_SNB_D_IDS(&intel_sandybridge_d_info), \
|
|
|
|
INTEL_SNB_M_IDS(&intel_sandybridge_m_info), \
|
|
|
|
INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */ \
|
|
|
|
INTEL_IVB_M_IDS(&intel_ivybridge_m_info), \
|
|
|
|
INTEL_IVB_D_IDS(&intel_ivybridge_d_info), \
|
|
|
|
INTEL_HSW_D_IDS(&intel_haswell_d_info), \
|
|
|
|
INTEL_HSW_M_IDS(&intel_haswell_m_info), \
|
|
|
|
INTEL_VLV_M_IDS(&intel_valleyview_m_info), \
|
2013-11-04 04:47:33 +04:00
|
|
|
INTEL_VLV_D_IDS(&intel_valleyview_d_info), \
|
2014-04-17 06:37:35 +04:00
|
|
|
INTEL_BDW_GT12M_IDS(&intel_broadwell_m_info), \
|
|
|
|
INTEL_BDW_GT12D_IDS(&intel_broadwell_d_info), \
|
|
|
|
INTEL_BDW_GT3M_IDS(&intel_broadwell_gt3m_info), \
|
2014-04-09 19:19:04 +04:00
|
|
|
INTEL_BDW_GT3D_IDS(&intel_broadwell_gt3d_info), \
|
2013-02-13 19:27:37 +04:00
|
|
|
INTEL_CHV_IDS(&intel_cherryview_info), \
|
|
|
|
INTEL_SKL_IDS(&intel_skylake_info)
|
2013-07-27 00:32:51 +04:00
|
|
|
|
2010-07-05 21:01:47 +04:00
|
|
|
static const struct pci_device_id pciidlist[] = { /* aka */
|
2013-07-27 00:32:51 +04:00
|
|
|
INTEL_PCI_IDS,
|
2009-12-16 23:16:15 +03:00
|
|
|
{0, 0, 0}
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
DRM: i915: add mode setting support
This commit adds i915 driver support for the DRM mode setting APIs.
Currently, VGA, LVDS, SDVO DVI & VGA, TV and DVO LVDS outputs are
supported. HDMI, DisplayPort and additional SDVO output support will
follow.
Support for the mode setting code is controlled by the new 'modeset'
module option. A new config option, CONFIG_DRM_I915_KMS controls the
default behavior, and whether a PCI ID list is built into the module for
use by user level module utilities.
Note that if mode setting is enabled, user level drivers that access
display registers directly or that don't use the kernel graphics memory
manager will likely corrupt kernel graphics memory, disrupt output
configuration (possibly leading to hangs and/or blank displays), and
prevent panic/oops messages from appearing. So use caution when
enabling this code; be sure your user level code supports the new
interfaces.
A new SysRq key, 'g', provides emergency support for switching back to
the kernel's framebuffer console; which is useful for testing.
Co-authors: Dave Airlie <airlied@linux.ie>, Hong Liu <hong.liu@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2008-11-08 01:24:08 +03:00
|
|
|
#if defined(CONFIG_DRM_I915_KMS)
|
|
|
|
MODULE_DEVICE_TABLE(pci, pciidlist);
|
|
|
|
#endif
|
|
|
|
|
2011-08-16 23:34:10 +04:00
|
|
|
void intel_detect_pch(struct drm_device *dev)
|
2010-04-07 12:15:53 +04:00
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-02-14 22:23:54 +04:00
|
|
|
struct pci_dev *pch = NULL;
|
2010-04-07 12:15:53 +04:00
|
|
|
|
2013-04-06 00:12:44 +04:00
|
|
|
/* In all current cases, num_pipes is equivalent to the PCH_NOP setting
|
|
|
|
* (which really amounts to a PCH but no South Display).
|
|
|
|
*/
|
|
|
|
if (INTEL_INFO(dev)->num_pipes == 0) {
|
|
|
|
dev_priv->pch_type = PCH_NOP;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-04-07 12:15:53 +04:00
|
|
|
/*
|
|
|
|
* The reason to probe ISA bridge instead of Dev31:Fun0 is to
|
|
|
|
* make graphics device passthrough work easy for VMM, that only
|
|
|
|
* need to expose ISA bridge to let driver know the real hardware
|
|
|
|
* underneath. This is a requirement from virtualization team.
|
2013-06-19 17:10:23 +04:00
|
|
|
*
|
|
|
|
* In some virtualized environments (e.g. XEN), there is irrelevant
|
|
|
|
* ISA bridge in the system. To work reliably, we should scan trhough
|
|
|
|
* all the ISA bridge devices and check for the first match, instead
|
|
|
|
* of only checking the first one.
|
2010-04-07 12:15:53 +04:00
|
|
|
*/
|
2014-02-14 22:23:54 +04:00
|
|
|
while ((pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, pch))) {
|
2010-04-07 12:15:53 +04:00
|
|
|
if (pch->vendor == PCI_VENDOR_ID_INTEL) {
|
2014-02-14 22:23:54 +04:00
|
|
|
unsigned short id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
|
2012-11-20 21:12:07 +04:00
|
|
|
dev_priv->pch_id = id;
|
2010-04-07 12:15:53 +04:00
|
|
|
|
2011-04-29 01:48:02 +04:00
|
|
|
if (id == INTEL_PCH_IBX_DEVICE_ID_TYPE) {
|
|
|
|
dev_priv->pch_type = PCH_IBX;
|
|
|
|
DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
|
2012-11-01 01:52:27 +04:00
|
|
|
WARN_ON(!IS_GEN5(dev));
|
2011-04-29 01:48:02 +04:00
|
|
|
} else if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
|
2010-04-07 12:15:53 +04:00
|
|
|
dev_priv->pch_type = PCH_CPT;
|
|
|
|
DRM_DEBUG_KMS("Found CougarPoint PCH\n");
|
2012-11-01 01:52:27 +04:00
|
|
|
WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
|
2011-04-07 23:33:56 +04:00
|
|
|
} else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
|
|
|
|
/* PantherPoint is CPT compatible */
|
|
|
|
dev_priv->pch_type = PCH_CPT;
|
2013-10-01 13:12:33 +04:00
|
|
|
DRM_DEBUG_KMS("Found PantherPoint PCH\n");
|
2012-11-01 01:52:27 +04:00
|
|
|
WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
|
2012-03-29 19:32:20 +04:00
|
|
|
} else if (id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
|
|
|
|
dev_priv->pch_type = PCH_LPT;
|
|
|
|
DRM_DEBUG_KMS("Found LynxPoint PCH\n");
|
2012-11-01 01:52:27 +04:00
|
|
|
WARN_ON(!IS_HASWELL(dev));
|
2014-10-01 23:04:13 +04:00
|
|
|
WARN_ON(IS_HSW_ULT(dev));
|
2013-11-03 08:07:35 +04:00
|
|
|
} else if (IS_BROADWELL(dev)) {
|
|
|
|
dev_priv->pch_type = PCH_LPT;
|
|
|
|
dev_priv->pch_id =
|
|
|
|
INTEL_PCH_LPT_LP_DEVICE_ID_TYPE;
|
|
|
|
DRM_DEBUG_KMS("This is Broadwell, assuming "
|
|
|
|
"LynxPoint LP PCH\n");
|
2013-11-08 09:40:41 +04:00
|
|
|
} else if (id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
|
|
|
|
dev_priv->pch_type = PCH_LPT;
|
|
|
|
DRM_DEBUG_KMS("Found LynxPoint LP PCH\n");
|
|
|
|
WARN_ON(!IS_HASWELL(dev));
|
2014-10-01 23:04:13 +04:00
|
|
|
WARN_ON(!IS_HSW_ULT(dev));
|
2014-04-09 09:38:57 +04:00
|
|
|
} else if (id == INTEL_PCH_SPT_DEVICE_ID_TYPE) {
|
|
|
|
dev_priv->pch_type = PCH_SPT;
|
|
|
|
DRM_DEBUG_KMS("Found SunrisePoint PCH\n");
|
|
|
|
WARN_ON(!IS_SKYLAKE(dev));
|
|
|
|
} else if (id == INTEL_PCH_SPT_LP_DEVICE_ID_TYPE) {
|
|
|
|
dev_priv->pch_type = PCH_SPT;
|
|
|
|
DRM_DEBUG_KMS("Found SunrisePoint LP PCH\n");
|
|
|
|
WARN_ON(!IS_SKYLAKE(dev));
|
2014-02-14 22:23:54 +04:00
|
|
|
} else
|
|
|
|
continue;
|
|
|
|
|
2013-06-19 17:10:23 +04:00
|
|
|
break;
|
2010-04-07 12:15:53 +04:00
|
|
|
}
|
|
|
|
}
|
2013-06-19 17:10:23 +04:00
|
|
|
if (!pch)
|
2014-02-14 22:23:54 +04:00
|
|
|
DRM_DEBUG_KMS("No PCH found.\n");
|
|
|
|
|
|
|
|
pci_dev_put(pch);
|
2010-04-07 12:15:53 +04:00
|
|
|
}
|
|
|
|
|
2012-04-06 01:47:36 +04:00
|
|
|
bool i915_semaphore_is_enabled(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
if (INTEL_INFO(dev)->gen < 6)
|
2013-12-17 12:56:53 +04:00
|
|
|
return false;
|
2012-04-06 01:47:36 +04:00
|
|
|
|
2014-01-21 13:24:25 +04:00
|
|
|
if (i915.semaphores >= 0)
|
|
|
|
return i915.semaphores;
|
2012-04-06 01:47:36 +04:00
|
|
|
|
2014-07-24 20:04:44 +04:00
|
|
|
/* TODO: make semaphores and Execlists play nicely together */
|
|
|
|
if (i915.enable_execlists)
|
|
|
|
return false;
|
|
|
|
|
2014-08-04 22:15:19 +04:00
|
|
|
/* Until we get further testing... */
|
|
|
|
if (IS_GEN8(dev))
|
|
|
|
return false;
|
|
|
|
|
2012-04-02 22:48:43 +04:00
|
|
|
#ifdef CONFIG_INTEL_IOMMU
|
2012-04-06 01:47:36 +04:00
|
|
|
/* Enable semaphores on SNB when IO remapping is off */
|
2012-04-02 22:48:43 +04:00
|
|
|
if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
|
|
|
|
return false;
|
|
|
|
#endif
|
2012-04-06 01:47:36 +04:00
|
|
|
|
2013-12-17 12:56:53 +04:00
|
|
|
return true;
|
2012-04-06 01:47:36 +04:00
|
|
|
}
|
|
|
|
|
2014-08-18 15:42:44 +04:00
|
|
|
void intel_hpd_cancel_work(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
spin_lock_irq(&dev_priv->irq_lock);
|
|
|
|
|
|
|
|
dev_priv->long_hpd_port_mask = 0;
|
|
|
|
dev_priv->short_hpd_port_mask = 0;
|
|
|
|
dev_priv->hpd_event_bits = 0;
|
|
|
|
|
|
|
|
spin_unlock_irq(&dev_priv->irq_lock);
|
|
|
|
|
|
|
|
cancel_work_sync(&dev_priv->dig_port_work);
|
|
|
|
cancel_work_sync(&dev_priv->hotplug_work);
|
|
|
|
cancel_delayed_work_sync(&dev_priv->hotplug_reenable_work);
|
|
|
|
}
|
|
|
|
|
2014-08-18 15:42:45 +04:00
|
|
|
static void intel_suspend_encoders(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = dev_priv->dev;
|
|
|
|
struct drm_encoder *encoder;
|
|
|
|
|
|
|
|
drm_modeset_lock_all(dev);
|
|
|
|
list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
|
|
|
|
struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
|
|
|
|
|
|
|
|
if (intel_encoder->suspend)
|
|
|
|
intel_encoder->suspend(intel_encoder);
|
|
|
|
}
|
|
|
|
drm_modeset_unlock_all(dev);
|
|
|
|
}
|
|
|
|
|
2014-08-13 21:37:05 +04:00
|
|
|
static int intel_suspend_complete(struct drm_i915_private *dev_priv);
|
2014-10-27 22:54:32 +03:00
|
|
|
static int vlv_resume_prepare(struct drm_i915_private *dev_priv,
|
|
|
|
bool rpm_resume);
|
2014-08-13 21:37:05 +04:00
|
|
|
|
2014-10-23 20:23:25 +04:00
|
|
|
static int i915_drm_suspend(struct drm_device *dev)
|
2007-11-22 07:14:14 +03:00
|
|
|
{
|
2010-02-19 01:06:27 +03:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2013-03-26 20:25:45 +04:00
|
|
|
struct drm_crtc *crtc;
|
2014-06-12 19:35:47 +04:00
|
|
|
pci_power_t opregion_target_state;
|
2010-02-19 01:06:27 +03:00
|
|
|
|
i915: ignore lid open event when resuming
i915 driver needs to do modeset when
1. system resumes from sleep
2. lid is opened
In PM_SUSPEND_MEM state, all the GPEs are cleared when system resumes,
thus it is the i915_resume code does the modeset rather than intel_lid_notify().
But in PM_SUSPEND_FREEZE state, this will be broken because
system is still responsive to the lid events.
1. When we close the lid in Freeze state, intel_lid_notify() sets modeset_on_lid.
2. When we reopen the lid, intel_lid_notify() will do a modeset,
before the system is resumed.
here is the error log,
[92146.548074] WARNING: at drivers/gpu/drm/i915/intel_display.c:1028 intel_wait_for_pipe_off+0x184/0x190 [i915]()
[92146.548076] Hardware name: VGN-Z540N
[92146.548078] pipe_off wait timed out
[92146.548167] Modules linked in: hid_generic usbhid hid snd_hda_codec_realtek snd_hda_intel snd_hda_codec parport_pc snd_hwdep ppdev snd_pcm_oss i915 snd_mixer_oss snd_pcm arc4 iwldvm snd_seq_dummy mac80211 snd_seq_oss snd_seq_midi fbcon tileblit font bitblit softcursor drm_kms_helper snd_rawmidi snd_seq_midi_event coretemp drm snd_seq kvm btusb bluetooth snd_timer iwlwifi pcmcia tpm_infineon i2c_algo_bit joydev snd_seq_device intel_agp cfg80211 snd intel_gtt yenta_socket pcmcia_rsrc sony_laptop agpgart microcode psmouse tpm_tis serio_raw mxm_wmi soundcore snd_page_alloc tpm acpi_cpufreq lpc_ich pcmcia_core tpm_bios mperf processor lp parport firewire_ohci firewire_core crc_itu_t sdhci_pci sdhci thermal e1000e
[92146.548173] Pid: 4304, comm: kworker/0:0 Tainted: G W 3.8.0-rc3-s0i3-v3-test+ #9
[92146.548175] Call Trace:
[92146.548189] [<c10378e2>] warn_slowpath_common+0x72/0xa0
[92146.548227] [<f86398b4>] ? intel_wait_for_pipe_off+0x184/0x190 [i915]
[92146.548263] [<f86398b4>] ? intel_wait_for_pipe_off+0x184/0x190 [i915]
[92146.548270] [<c10379b3>] warn_slowpath_fmt+0x33/0x40
[92146.548307] [<f86398b4>] intel_wait_for_pipe_off+0x184/0x190 [i915]
[92146.548344] [<f86399c2>] intel_disable_pipe+0x102/0x190 [i915]
[92146.548380] [<f8639ea4>] ? intel_disable_plane+0x64/0x80 [i915]
[92146.548417] [<f8639f7c>] i9xx_crtc_disable+0xbc/0x150 [i915]
[92146.548456] [<f863ebee>] intel_crtc_update_dpms+0x5e/0x90 [i915]
[92146.548493] [<f86437cf>] intel_modeset_setup_hw_state+0x42f/0x8f0 [i915]
[92146.548535] [<f8645b0b>] intel_lid_notify+0x9b/0xc0 [i915]
[92146.548543] [<c15610d3>] notifier_call_chain+0x43/0x60
[92146.548550] [<c105d1e1>] __blocking_notifier_call_chain+0x41/0x80
[92146.548556] [<c105d23f>] blocking_notifier_call_chain+0x1f/0x30
[92146.548563] [<c131a684>] acpi_lid_send_state+0x78/0xa4
[92146.548569] [<c131aa9e>] acpi_button_notify+0x3b/0xf1
[92146.548577] [<c12df56a>] ? acpi_os_execute+0x17/0x19
[92146.548582] [<c12e591a>] ? acpi_ec_sync_query+0xa5/0xbc
[92146.548589] [<c12e2b82>] acpi_device_notify+0x16/0x18
[92146.548595] [<c12f4904>] acpi_ev_notify_dispatch+0x38/0x4f
[92146.548600] [<c12df0e8>] acpi_os_execute_deferred+0x20/0x2b
[92146.548607] [<c1051208>] process_one_work+0x128/0x3f0
[92146.548613] [<c1564f73>] ? common_interrupt+0x33/0x38
[92146.548618] [<c104f8c0>] ? wake_up_worker+0x30/0x30
[92146.548624] [<c12df0c8>] ? acpi_os_wait_events_complete+0x1e/0x1e
[92146.548629] [<c10524f9>] worker_thread+0x119/0x3b0
[92146.548634] [<c10523e0>] ? manage_workers+0x240/0x240
[92146.548640] [<c1056e84>] kthread+0x94/0xa0
[92146.548647] [<c1060000>] ? ftrace_raw_output_sched_stat_runtime+0x70/0xf0
[92146.548652] [<c15649b7>] ret_from_kernel_thread+0x1b/0x28
[92146.548658] [<c1056df0>] ? kthread_create_on_node+0xc0/0xc0
three different modeset flags are introduced in this patch
MODESET_ON_LID_OPEN: do modeset on next lid open event
MODESET_DONE: modeset already done
MODESET_SUSPENDED: suspended, only do modeset when system is resumed
In this way,
1. when lid is closed, MODESET_ON_LID_OPEN is set so that
we'll do modeset on next lid open event.
2. when lid is opened, MODESET_DONE is set
so that duplicate lid open events will be ignored.
3. when system suspends, MODESET_SUSPENDED is set.
In this case, we will not do modeset on any lid events.
Plus, locking mechanism is also introduced to avoid racing.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-02-05 11:41:53 +04:00
|
|
|
/* ignore lid events during suspend */
|
|
|
|
mutex_lock(&dev_priv->modeset_restore_lock);
|
|
|
|
dev_priv->modeset_restore = MODESET_SUSPENDED;
|
|
|
|
mutex_unlock(&dev_priv->modeset_restore_lock);
|
|
|
|
|
2013-08-19 20:18:09 +04:00
|
|
|
/* We do a lot of poking in a lot of registers, make sure they work
|
|
|
|
* properly. */
|
2014-02-18 02:02:02 +04:00
|
|
|
intel_display_set_init_power(dev_priv, true);
|
2013-01-25 22:59:15 +04:00
|
|
|
|
2010-12-07 02:20:40 +03:00
|
|
|
drm_kms_helper_poll_disable(dev);
|
|
|
|
|
2007-11-22 07:14:14 +03:00
|
|
|
pci_save_state(dev->pdev);
|
|
|
|
|
2009-02-18 02:13:31 +03:00
|
|
|
/* If KMS is active, we do the leavevt stuff here */
|
2009-02-24 02:41:09 +03:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_MODESET)) {
|
2013-07-09 18:51:37 +04:00
|
|
|
int error;
|
|
|
|
|
2013-10-16 14:50:01 +04:00
|
|
|
error = i915_gem_suspend(dev);
|
2010-02-07 23:48:24 +03:00
|
|
|
if (error) {
|
2009-02-24 02:41:09 +03:00
|
|
|
dev_err(&dev->pdev->dev,
|
2010-02-07 23:48:24 +03:00
|
|
|
"GEM idle failed, resume might fail\n");
|
|
|
|
return error;
|
|
|
|
}
|
2012-07-26 21:21:47 +04:00
|
|
|
|
2014-11-19 16:30:05 +03:00
|
|
|
intel_suspend_gt_powersave(dev);
|
|
|
|
|
2013-03-26 20:25:45 +04:00
|
|
|
/*
|
|
|
|
* Disable CRTCs directly since we want to preserve sw state
|
2014-07-12 08:32:27 +04:00
|
|
|
* for _thaw. Also, power gate the CRTC power wells.
|
2013-03-26 20:25:45 +04:00
|
|
|
*/
|
drm: Split connection_mutex out of mode_config.mutex (v3)
After the split-out of crtc locks from the big mode_config.mutex
there's still two major areas it protects:
- Various connector probe states, like connector->status, EDID
properties, probed mode lists and similar information.
- The links from connector->encoder and encoder->crtc and other
modeset-relevant connector state (e.g. properties which control the
panel fitter).
The later is used by modeset operations. But they don't really care
about the former since it's allowed to e.g. enable a disconnected VGA
output or with a mode not in the probed list.
Thus far this hasn't been a problem, but for the atomic modeset
conversion Rob Clark needs to convert all modeset relevant locks into
w/w locks. This is required because the order of acquisition is
determined by how userspace supplies the atomic modeset data. This has
run into troubles in the detect path since the i915 load detect code
needs _both_ protections offered by the mode_config.mutex: It updates
probe state and it needs to change the modeset configuration to enable
the temporary load detect pipe.
The big deal here is that for the probe/detect users of this lock a
plain mutex fits best, but for atomic modesets we really want a w/w
mutex. To fix this lets split out a new connection_mutex lock for the
modeset relevant parts.
For simplicity I've decided to only add one additional lock for all
connector/encoder links and modeset configuration states. We have
piles of different modeset objects in addition to those (like bridges
or panels), so adding per-object locks would be much more effort.
Also, we're guaranteed (at least for now) to do a full modeset if we
need to acquire this lock. Which means that fine-grained locking is
fairly irrelevant compared to the amount of time the full modeset will
take.
I've done a full audit, and there's just a few things that justify
special focus:
- Locking in drm_sysfs.c is almost completely absent. We should
sprinkle mode_config.connection_mutex over this file a bit, but
since it already lacks mode_config.mutex this patch wont make the
situation any worse. This is material for a follow-up patch.
- omap has a omap_framebuffer_flush function which walks the
connector->encoder->crtc links and is called from many contexts.
Some look like they don't acquire mode_config.mutex, so this is
already racy. Again fixing this is material for a separate patch.
- The radeon hot_plug function to retrain DP links looks at
connector->dpms. Currently this happens without any locking, so is
already racy. I think radeon_hotplug_work_func should gain
mutex_lock/unlock calls for the mode_config.connection_mutex.
- Same applies to i915's intel_dp_hot_plug. But again, this is already
racy.
- i915 load_detect code needs to acquire this lock. Which means the
w/w dance due to Rob's work will be nicely contained to _just_ this
function.
I've added fixme comments everywhere where it looks suspicious but in
the sysfs code. After a quick irc discussion with Dave Airlie it
sounds like the lack of locking in there is due to sysfs cleanup fun
at module unload.
v1: original (only compile tested)
v2: missing mutex_init(), etc (from Rob Clark)
v3: i915 needs more care in the conversion:
- Protect the edp pp logic with the connection_mutex.
- Use connection_mutex in the backlight code due to
get_pipe_from_connector.
- Use drm_modeset_lock_all in suspend/resume paths.
- Update lock checks in the overlay code.
Cc: Alex Deucher <alexdeucher@gmail.com>
Cc: Rob Clark <robdclark@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Rob Clark <robdclark@gmail.com>
2014-05-30 01:54:47 +04:00
|
|
|
drm_modeset_lock_all(dev);
|
2014-07-12 08:32:27 +04:00
|
|
|
for_each_crtc(dev, crtc)
|
|
|
|
intel_crtc_control(crtc, false);
|
drm: Split connection_mutex out of mode_config.mutex (v3)
After the split-out of crtc locks from the big mode_config.mutex
there's still two major areas it protects:
- Various connector probe states, like connector->status, EDID
properties, probed mode lists and similar information.
- The links from connector->encoder and encoder->crtc and other
modeset-relevant connector state (e.g. properties which control the
panel fitter).
The later is used by modeset operations. But they don't really care
about the former since it's allowed to e.g. enable a disconnected VGA
output or with a mode not in the probed list.
Thus far this hasn't been a problem, but for the atomic modeset
conversion Rob Clark needs to convert all modeset relevant locks into
w/w locks. This is required because the order of acquisition is
determined by how userspace supplies the atomic modeset data. This has
run into troubles in the detect path since the i915 load detect code
needs _both_ protections offered by the mode_config.mutex: It updates
probe state and it needs to change the modeset configuration to enable
the temporary load detect pipe.
The big deal here is that for the probe/detect users of this lock a
plain mutex fits best, but for atomic modesets we really want a w/w
mutex. To fix this lets split out a new connection_mutex lock for the
modeset relevant parts.
For simplicity I've decided to only add one additional lock for all
connector/encoder links and modeset configuration states. We have
piles of different modeset objects in addition to those (like bridges
or panels), so adding per-object locks would be much more effort.
Also, we're guaranteed (at least for now) to do a full modeset if we
need to acquire this lock. Which means that fine-grained locking is
fairly irrelevant compared to the amount of time the full modeset will
take.
I've done a full audit, and there's just a few things that justify
special focus:
- Locking in drm_sysfs.c is almost completely absent. We should
sprinkle mode_config.connection_mutex over this file a bit, but
since it already lacks mode_config.mutex this patch wont make the
situation any worse. This is material for a follow-up patch.
- omap has a omap_framebuffer_flush function which walks the
connector->encoder->crtc links and is called from many contexts.
Some look like they don't acquire mode_config.mutex, so this is
already racy. Again fixing this is material for a separate patch.
- The radeon hot_plug function to retrain DP links looks at
connector->dpms. Currently this happens without any locking, so is
already racy. I think radeon_hotplug_work_func should gain
mutex_lock/unlock calls for the mode_config.connection_mutex.
- Same applies to i915's intel_dp_hot_plug. But again, this is already
racy.
- i915 load_detect code needs to acquire this lock. Which means the
w/w dance due to Rob's work will be nicely contained to _just_ this
function.
I've added fixme comments everywhere where it looks suspicious but in
the sysfs code. After a quick irc discussion with Dave Airlie it
sounds like the lack of locking in there is due to sysfs cleanup fun
at module unload.
v1: original (only compile tested)
v2: missing mutex_init(), etc (from Rob Clark)
v3: i915 needs more care in the conversion:
- Protect the edp pp logic with the connection_mutex.
- Use connection_mutex in the backlight code due to
get_pipe_from_connector.
- Use drm_modeset_lock_all in suspend/resume paths.
- Update lock checks in the overlay code.
Cc: Alex Deucher <alexdeucher@gmail.com>
Cc: Rob Clark <robdclark@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Rob Clark <robdclark@gmail.com>
2014-05-30 01:54:47 +04:00
|
|
|
drm_modeset_unlock_all(dev);
|
2013-04-17 15:04:50 +04:00
|
|
|
|
2014-05-02 08:02:48 +04:00
|
|
|
intel_dp_mst_suspend(dev);
|
2014-07-23 08:25:24 +04:00
|
|
|
|
2014-09-30 12:56:44 +04:00
|
|
|
intel_runtime_pm_disable_interrupts(dev_priv);
|
2014-08-18 15:42:44 +04:00
|
|
|
intel_hpd_cancel_work(dev_priv);
|
2014-05-02 08:02:48 +04:00
|
|
|
|
2014-08-18 15:42:45 +04:00
|
|
|
intel_suspend_encoders(dev_priv);
|
|
|
|
|
2014-09-30 12:56:37 +04:00
|
|
|
intel_suspend_hw(dev);
|
2009-02-18 02:13:31 +03:00
|
|
|
}
|
|
|
|
|
2013-10-16 20:21:30 +04:00
|
|
|
i915_gem_suspend_gtt_mappings(dev);
|
|
|
|
|
2009-06-23 05:05:12 +04:00
|
|
|
i915_save_state(dev);
|
|
|
|
|
2014-06-23 16:46:02 +04:00
|
|
|
opregion_target_state = PCI_D3cold;
|
|
|
|
#if IS_ENABLED(CONFIG_ACPI_SLEEP)
|
|
|
|
if (acpi_target_system_state() < ACPI_STATE_S3)
|
2014-06-12 19:35:47 +04:00
|
|
|
opregion_target_state = PCI_D1;
|
2014-06-23 16:46:02 +04:00
|
|
|
#endif
|
2014-06-12 19:35:47 +04:00
|
|
|
intel_opregion_notify_adapter(dev, opregion_target_state);
|
|
|
|
|
2014-06-12 19:35:45 +04:00
|
|
|
intel_uncore_forcewake_reset(dev, false);
|
2010-08-19 19:09:23 +04:00
|
|
|
intel_opregion_fini(dev);
|
2008-08-05 22:37:25 +04:00
|
|
|
|
2014-08-13 16:09:46 +04:00
|
|
|
intel_fbdev_set_suspend(dev, FBINFO_STATE_SUSPENDED, true);
|
2012-03-28 13:48:49 +04:00
|
|
|
|
2014-02-25 19:11:28 +04:00
|
|
|
dev_priv->suspend_count++;
|
|
|
|
|
2014-06-12 19:35:44 +04:00
|
|
|
intel_display_set_init_power(dev_priv, false);
|
|
|
|
|
2010-02-19 01:06:27 +03:00
|
|
|
return 0;
|
2010-02-07 23:48:24 +03:00
|
|
|
}
|
|
|
|
|
2014-10-23 20:23:15 +04:00
|
|
|
static int i915_drm_suspend_late(struct drm_device *drm_dev)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = drm_dev->dev_private;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = intel_suspend_complete(dev_priv);
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("Suspend complete failed: %d\n", ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
pci_disable_device(drm_dev->pdev);
|
|
|
|
pci_set_power_state(drm_dev->pdev, PCI_D3hot);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-23 20:23:27 +04:00
|
|
|
int i915_suspend_legacy(struct drm_device *dev, pm_message_t state)
|
2010-02-07 23:48:24 +03:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if (!dev || !dev->dev_private) {
|
|
|
|
DRM_ERROR("dev: %p\n", dev);
|
|
|
|
DRM_ERROR("DRM not initialized, aborting suspend.\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2014-09-10 19:16:55 +04:00
|
|
|
if (WARN_ON_ONCE(state.event != PM_EVENT_SUSPEND &&
|
|
|
|
state.event != PM_EVENT_FREEZE))
|
|
|
|
return -EINVAL;
|
2010-12-07 02:20:40 +03:00
|
|
|
|
|
|
|
if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
|
|
|
|
return 0;
|
2010-09-08 12:45:11 +04:00
|
|
|
|
2014-10-23 20:23:25 +04:00
|
|
|
error = i915_drm_suspend(dev);
|
2010-02-07 23:48:24 +03:00
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
2014-10-23 20:23:18 +04:00
|
|
|
return i915_drm_suspend_late(dev);
|
2007-11-22 07:14:14 +03:00
|
|
|
}
|
|
|
|
|
2014-10-23 20:23:25 +04:00
|
|
|
static int i915_drm_resume(struct drm_device *dev)
|
2014-04-01 20:55:22 +04:00
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2013-09-13 01:06:43 +04:00
|
|
|
|
2014-10-23 20:23:20 +04:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_MODESET)) {
|
2013-09-13 01:06:43 +04:00
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
i915_gem_restore_gtt_mappings(dev);
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
}
|
|
|
|
|
2010-02-19 01:06:27 +03:00
|
|
|
i915_restore_state(dev);
|
2010-08-19 19:09:23 +04:00
|
|
|
intel_opregion_setup(dev);
|
2010-02-19 01:06:27 +03:00
|
|
|
|
2009-02-18 02:13:31 +03:00
|
|
|
/* KMS EnterVT equivalent */
|
|
|
|
if (drm_core_check_feature(dev, DRIVER_MODESET)) {
|
2012-12-01 18:04:25 +04:00
|
|
|
intel_init_pch_refclk(dev);
|
2014-01-17 01:28:44 +04:00
|
|
|
drm_mode_config_reset(dev);
|
2012-05-09 14:56:28 +04:00
|
|
|
|
2009-02-18 02:13:31 +03:00
|
|
|
mutex_lock(&dev->struct_mutex);
|
2014-04-09 12:19:43 +04:00
|
|
|
if (i915_gem_init_hw(dev)) {
|
|
|
|
DRM_ERROR("failed to re-initialize GPU, declaring wedged!\n");
|
|
|
|
atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
|
|
|
|
}
|
2009-02-18 02:13:31 +03:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2009-02-24 02:41:09 +03:00
|
|
|
|
2014-09-08 20:28:20 +04:00
|
|
|
/* We need working interrupts for modeset enabling ... */
|
2014-09-30 12:56:44 +04:00
|
|
|
intel_runtime_pm_enable_interrupts(dev_priv);
|
2013-03-05 12:50:58 +04:00
|
|
|
|
2012-05-09 14:56:28 +04:00
|
|
|
intel_modeset_init_hw(dev);
|
2013-03-26 20:25:45 +04:00
|
|
|
|
2014-11-12 15:48:52 +03:00
|
|
|
spin_lock_irq(&dev_priv->irq_lock);
|
|
|
|
if (dev_priv->display.hpd_irq_setup)
|
|
|
|
dev_priv->display.hpd_irq_setup(dev);
|
|
|
|
spin_unlock_irq(&dev_priv->irq_lock);
|
2014-05-02 08:02:48 +04:00
|
|
|
|
2013-03-26 20:25:45 +04:00
|
|
|
drm_modeset_lock_all(dev);
|
|
|
|
intel_modeset_setup_hw_state(dev, true);
|
|
|
|
drm_modeset_unlock_all(dev);
|
2013-03-05 12:50:58 +04:00
|
|
|
|
2014-12-08 06:23:37 +03:00
|
|
|
intel_dp_mst_resume(dev);
|
|
|
|
|
2013-03-05 12:50:58 +04:00
|
|
|
/*
|
|
|
|
* ... but also need to make sure that hotplug processing
|
|
|
|
* doesn't cause havoc. Like in the driver load code we don't
|
|
|
|
* bother with the tiny race here where we might loose hotplug
|
|
|
|
* notifications.
|
|
|
|
* */
|
2014-09-30 12:56:44 +04:00
|
|
|
intel_hpd_init(dev_priv);
|
2013-03-26 20:25:46 +04:00
|
|
|
/* Config may have changed between suspend and resume */
|
2014-05-21 02:25:33 +04:00
|
|
|
drm_helper_hpd_irq_event(dev);
|
2011-01-05 23:01:26 +03:00
|
|
|
}
|
2011-01-05 23:01:25 +03:00
|
|
|
|
2010-08-19 19:09:23 +04:00
|
|
|
intel_opregion_init(dev);
|
|
|
|
|
2014-08-13 16:09:46 +04:00
|
|
|
intel_fbdev_set_suspend(dev, FBINFO_STATE_RUNNING, false);
|
2012-11-02 22:13:59 +04:00
|
|
|
|
i915: ignore lid open event when resuming
i915 driver needs to do modeset when
1. system resumes from sleep
2. lid is opened
In PM_SUSPEND_MEM state, all the GPEs are cleared when system resumes,
thus it is the i915_resume code does the modeset rather than intel_lid_notify().
But in PM_SUSPEND_FREEZE state, this will be broken because
system is still responsive to the lid events.
1. When we close the lid in Freeze state, intel_lid_notify() sets modeset_on_lid.
2. When we reopen the lid, intel_lid_notify() will do a modeset,
before the system is resumed.
here is the error log,
[92146.548074] WARNING: at drivers/gpu/drm/i915/intel_display.c:1028 intel_wait_for_pipe_off+0x184/0x190 [i915]()
[92146.548076] Hardware name: VGN-Z540N
[92146.548078] pipe_off wait timed out
[92146.548167] Modules linked in: hid_generic usbhid hid snd_hda_codec_realtek snd_hda_intel snd_hda_codec parport_pc snd_hwdep ppdev snd_pcm_oss i915 snd_mixer_oss snd_pcm arc4 iwldvm snd_seq_dummy mac80211 snd_seq_oss snd_seq_midi fbcon tileblit font bitblit softcursor drm_kms_helper snd_rawmidi snd_seq_midi_event coretemp drm snd_seq kvm btusb bluetooth snd_timer iwlwifi pcmcia tpm_infineon i2c_algo_bit joydev snd_seq_device intel_agp cfg80211 snd intel_gtt yenta_socket pcmcia_rsrc sony_laptop agpgart microcode psmouse tpm_tis serio_raw mxm_wmi soundcore snd_page_alloc tpm acpi_cpufreq lpc_ich pcmcia_core tpm_bios mperf processor lp parport firewire_ohci firewire_core crc_itu_t sdhci_pci sdhci thermal e1000e
[92146.548173] Pid: 4304, comm: kworker/0:0 Tainted: G W 3.8.0-rc3-s0i3-v3-test+ #9
[92146.548175] Call Trace:
[92146.548189] [<c10378e2>] warn_slowpath_common+0x72/0xa0
[92146.548227] [<f86398b4>] ? intel_wait_for_pipe_off+0x184/0x190 [i915]
[92146.548263] [<f86398b4>] ? intel_wait_for_pipe_off+0x184/0x190 [i915]
[92146.548270] [<c10379b3>] warn_slowpath_fmt+0x33/0x40
[92146.548307] [<f86398b4>] intel_wait_for_pipe_off+0x184/0x190 [i915]
[92146.548344] [<f86399c2>] intel_disable_pipe+0x102/0x190 [i915]
[92146.548380] [<f8639ea4>] ? intel_disable_plane+0x64/0x80 [i915]
[92146.548417] [<f8639f7c>] i9xx_crtc_disable+0xbc/0x150 [i915]
[92146.548456] [<f863ebee>] intel_crtc_update_dpms+0x5e/0x90 [i915]
[92146.548493] [<f86437cf>] intel_modeset_setup_hw_state+0x42f/0x8f0 [i915]
[92146.548535] [<f8645b0b>] intel_lid_notify+0x9b/0xc0 [i915]
[92146.548543] [<c15610d3>] notifier_call_chain+0x43/0x60
[92146.548550] [<c105d1e1>] __blocking_notifier_call_chain+0x41/0x80
[92146.548556] [<c105d23f>] blocking_notifier_call_chain+0x1f/0x30
[92146.548563] [<c131a684>] acpi_lid_send_state+0x78/0xa4
[92146.548569] [<c131aa9e>] acpi_button_notify+0x3b/0xf1
[92146.548577] [<c12df56a>] ? acpi_os_execute+0x17/0x19
[92146.548582] [<c12e591a>] ? acpi_ec_sync_query+0xa5/0xbc
[92146.548589] [<c12e2b82>] acpi_device_notify+0x16/0x18
[92146.548595] [<c12f4904>] acpi_ev_notify_dispatch+0x38/0x4f
[92146.548600] [<c12df0e8>] acpi_os_execute_deferred+0x20/0x2b
[92146.548607] [<c1051208>] process_one_work+0x128/0x3f0
[92146.548613] [<c1564f73>] ? common_interrupt+0x33/0x38
[92146.548618] [<c104f8c0>] ? wake_up_worker+0x30/0x30
[92146.548624] [<c12df0c8>] ? acpi_os_wait_events_complete+0x1e/0x1e
[92146.548629] [<c10524f9>] worker_thread+0x119/0x3b0
[92146.548634] [<c10523e0>] ? manage_workers+0x240/0x240
[92146.548640] [<c1056e84>] kthread+0x94/0xa0
[92146.548647] [<c1060000>] ? ftrace_raw_output_sched_stat_runtime+0x70/0xf0
[92146.548652] [<c15649b7>] ret_from_kernel_thread+0x1b/0x28
[92146.548658] [<c1056df0>] ? kthread_create_on_node+0xc0/0xc0
three different modeset flags are introduced in this patch
MODESET_ON_LID_OPEN: do modeset on next lid open event
MODESET_DONE: modeset already done
MODESET_SUSPENDED: suspended, only do modeset when system is resumed
In this way,
1. when lid is closed, MODESET_ON_LID_OPEN is set so that
we'll do modeset on next lid open event.
2. when lid is opened, MODESET_DONE is set
so that duplicate lid open events will be ignored.
3. when system suspends, MODESET_SUSPENDED is set.
In this case, we will not do modeset on any lid events.
Plus, locking mechanism is also introduced to avoid racing.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-02-05 11:41:53 +04:00
|
|
|
mutex_lock(&dev_priv->modeset_restore_lock);
|
|
|
|
dev_priv->modeset_restore = MODESET_DONE;
|
|
|
|
mutex_unlock(&dev_priv->modeset_restore_lock);
|
2013-12-07 02:32:13 +04:00
|
|
|
|
2014-06-12 19:35:47 +04:00
|
|
|
intel_opregion_notify_adapter(dev, PCI_D0);
|
|
|
|
|
2014-10-23 20:23:22 +04:00
|
|
|
drm_kms_helper_poll_enable(dev);
|
|
|
|
|
2014-04-09 12:19:43 +04:00
|
|
|
return 0;
|
2010-02-07 23:48:24 +03:00
|
|
|
}
|
|
|
|
|
2014-10-23 20:23:25 +04:00
|
|
|
static int i915_drm_resume_early(struct drm_device *dev)
|
2010-02-07 23:48:24 +03:00
|
|
|
{
|
2014-10-23 20:23:24 +04:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-10-27 22:54:32 +03:00
|
|
|
int ret = 0;
|
2014-10-23 20:23:24 +04:00
|
|
|
|
2014-04-01 20:55:22 +04:00
|
|
|
/*
|
|
|
|
* We have a resume ordering issue with the snd-hda driver also
|
|
|
|
* requiring our device to be power up. Due to the lack of a
|
|
|
|
* parent/child relationship we currently solve this with an early
|
|
|
|
* resume hook.
|
|
|
|
*
|
|
|
|
* FIXME: This should be solved with a special hdmi sink device or
|
|
|
|
* similar so that power domains can be employed.
|
|
|
|
*/
|
2010-02-07 23:48:24 +03:00
|
|
|
if (pci_enable_device(dev->pdev))
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
pci_set_master(dev->pdev);
|
|
|
|
|
2014-10-27 22:54:33 +03:00
|
|
|
if (IS_VALLEYVIEW(dev_priv))
|
2014-10-27 22:54:32 +03:00
|
|
|
ret = vlv_resume_prepare(dev_priv, false);
|
2014-10-23 20:23:24 +04:00
|
|
|
if (ret)
|
|
|
|
DRM_ERROR("Resume prepare failed: %d,Continuing resume\n", ret);
|
|
|
|
|
|
|
|
intel_uncore_early_sanitize(dev, true);
|
2014-10-27 22:54:33 +03:00
|
|
|
|
|
|
|
if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
|
|
|
|
hsw_disable_pc8(dev_priv);
|
|
|
|
|
2014-10-23 20:23:24 +04:00
|
|
|
intel_uncore_sanitize(dev);
|
|
|
|
intel_power_domains_init_hw(dev_priv);
|
|
|
|
|
|
|
|
return ret;
|
2014-04-01 20:55:22 +04:00
|
|
|
}
|
|
|
|
|
2014-10-23 20:23:27 +04:00
|
|
|
int i915_resume_legacy(struct drm_device *dev)
|
2014-04-01 20:55:22 +04:00
|
|
|
{
|
2014-10-23 20:23:17 +04:00
|
|
|
int ret;
|
2014-04-01 20:55:22 +04:00
|
|
|
|
2014-10-23 20:23:19 +04:00
|
|
|
if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
|
|
|
|
return 0;
|
|
|
|
|
2014-10-23 20:23:25 +04:00
|
|
|
ret = i915_drm_resume_early(dev);
|
2014-10-23 20:23:17 +04:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2014-10-23 20:23:18 +04:00
|
|
|
return i915_drm_resume(dev);
|
|
|
|
}
|
|
|
|
|
2009-09-15 01:48:45 +04:00
|
|
|
/**
|
2011-11-28 22:15:17 +04:00
|
|
|
* i915_reset - reset chip after a hang
|
2009-09-15 01:48:45 +04:00
|
|
|
* @dev: drm device to reset
|
|
|
|
*
|
|
|
|
* Reset the chip. Useful if a hang is detected. Returns zero on successful
|
|
|
|
* reset or otherwise an error code.
|
|
|
|
*
|
|
|
|
* Procedure is fairly simple:
|
|
|
|
* - reset the chip using the reset reg
|
|
|
|
* - re-init context state
|
|
|
|
* - re-init hardware status page
|
|
|
|
* - re-init ring buffer
|
|
|
|
* - re-init interrupt state
|
|
|
|
* - re-init display
|
|
|
|
*/
|
2012-04-27 17:17:44 +04:00
|
|
|
int i915_reset(struct drm_device *dev)
|
2009-09-15 01:48:45 +04:00
|
|
|
{
|
2014-03-31 15:27:21 +04:00
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2013-05-28 13:38:44 +04:00
|
|
|
bool simulated;
|
2010-09-11 14:17:19 +04:00
|
|
|
int ret;
|
2009-09-15 01:48:45 +04:00
|
|
|
|
2014-01-21 13:24:25 +04:00
|
|
|
if (!i915.reset)
|
2010-12-23 16:33:15 +03:00
|
|
|
return 0;
|
|
|
|
|
2014-12-15 19:59:28 +03:00
|
|
|
intel_reset_gt_powersave(dev);
|
|
|
|
|
2012-07-05 00:18:39 +04:00
|
|
|
mutex_lock(&dev->struct_mutex);
|
2009-09-15 01:48:45 +04:00
|
|
|
|
2010-09-30 19:53:18 +04:00
|
|
|
i915_gem_reset(dev);
|
2010-09-19 15:31:36 +04:00
|
|
|
|
2013-05-28 13:38:44 +04:00
|
|
|
simulated = dev_priv->gpu_error.stop_rings != 0;
|
|
|
|
|
2013-08-30 17:19:28 +04:00
|
|
|
ret = intel_gpu_reset(dev);
|
|
|
|
|
|
|
|
/* Also reset the gpu hangman. */
|
|
|
|
if (simulated) {
|
|
|
|
DRM_INFO("Simulated gpu hang, resetting stop_rings\n");
|
|
|
|
dev_priv->gpu_error.stop_rings = 0;
|
|
|
|
if (ret == -ENODEV) {
|
2013-11-07 12:48:57 +04:00
|
|
|
DRM_INFO("Reset not implemented, but ignoring "
|
|
|
|
"error for simulated gpu hangs\n");
|
2013-08-30 17:19:28 +04:00
|
|
|
ret = 0;
|
|
|
|
}
|
2013-05-28 13:38:44 +04:00
|
|
|
}
|
2013-08-30 17:19:28 +04:00
|
|
|
|
2014-10-01 03:02:04 +04:00
|
|
|
if (i915_stop_ring_allow_warn(dev_priv))
|
|
|
|
pr_notice("drm/i915: Resetting chip after gpu hang\n");
|
|
|
|
|
2010-09-11 14:17:19 +04:00
|
|
|
if (ret) {
|
2013-11-07 12:48:57 +04:00
|
|
|
DRM_ERROR("Failed to reset chip: %i\n", ret);
|
2010-05-17 17:23:52 +04:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2010-09-19 15:38:26 +04:00
|
|
|
return ret;
|
2009-09-15 01:48:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Ok, now get things going again... */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Everything depends on having the GTT running, so we need to start
|
|
|
|
* there. Fortunately we don't need to do this unless we reset the
|
|
|
|
* chip at a PCI level.
|
|
|
|
*
|
|
|
|
* Next we need to restore the context, but we don't use those
|
|
|
|
* yet either...
|
|
|
|
*
|
|
|
|
* Ring buffer needs to be re-initialized in the KMS case, or if X
|
|
|
|
* was running at the time of the reset (i.e. we weren't VT
|
|
|
|
* switched away).
|
|
|
|
*/
|
2014-11-19 22:36:48 +03:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_MODESET)) {
|
2014-08-15 21:51:35 +04:00
|
|
|
/* Used to prevent gem_check_wedged returning -EAGAIN during gpu reset */
|
|
|
|
dev_priv->gpu_error.reload_in_reset = true;
|
|
|
|
|
2013-10-14 21:01:36 +04:00
|
|
|
ret = i915_gem_init_hw(dev);
|
2014-08-15 21:51:35 +04:00
|
|
|
|
|
|
|
dev_priv->gpu_error.reload_in_reset = false;
|
|
|
|
|
2012-06-19 20:40:00 +04:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2013-10-14 21:01:36 +04:00
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("Failed hw init on reset %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
2012-04-10 17:50:11 +04:00
|
|
|
|
2013-11-03 23:27:05 +04:00
|
|
|
/*
|
2014-05-23 00:18:21 +04:00
|
|
|
* FIXME: This races pretty badly against concurrent holders of
|
|
|
|
* ring interrupts. This is possible since we've started to drop
|
|
|
|
* dev->struct_mutex in select places when waiting for the gpu.
|
2013-11-03 23:27:05 +04:00
|
|
|
*/
|
2014-02-04 21:32:31 +04:00
|
|
|
|
2014-05-23 00:18:21 +04:00
|
|
|
/*
|
|
|
|
* rps/rc6 re-init is necessary to restore state lost after the
|
|
|
|
* reset and the re-install of gt irqs. Skip for ironlake per
|
2014-02-04 21:32:31 +04:00
|
|
|
* previous concerns that it doesn't respond well to some forms
|
2014-05-23 00:18:21 +04:00
|
|
|
* of re-init after reset.
|
|
|
|
*/
|
2014-04-14 21:24:28 +04:00
|
|
|
if (INTEL_INFO(dev)->gen > 5)
|
2014-12-15 19:59:28 +03:00
|
|
|
intel_enable_gt_powersave(dev);
|
2012-04-27 17:17:41 +04:00
|
|
|
} else {
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2009-09-15 01:48:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-22 03:09:25 +04:00
|
|
|
static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
2009-01-05 00:55:33 +03:00
|
|
|
{
|
2012-06-25 17:58:49 +04:00
|
|
|
struct intel_device_info *intel_info =
|
|
|
|
(struct intel_device_info *) ent->driver_data;
|
|
|
|
|
2014-01-21 13:24:25 +04:00
|
|
|
if (IS_PRELIMINARY_HW(intel_info) && !i915.preliminary_hw_support) {
|
2013-08-24 03:00:07 +04:00
|
|
|
DRM_INFO("This hardware requires preliminary hardware support.\n"
|
|
|
|
"See CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT, and/or modparam preliminary_hw_support\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2011-02-01 22:43:02 +03:00
|
|
|
/* Only bind to function 0 of the device. Early generations
|
|
|
|
* used function 1 as a placeholder for multi-head. This causes
|
|
|
|
* us confusion instead, especially on the systems where both
|
|
|
|
* functions have the same PCI-ID!
|
|
|
|
*/
|
|
|
|
if (PCI_FUNC(pdev->devfn))
|
|
|
|
return -ENODEV;
|
|
|
|
|
2013-12-11 14:34:33 +04:00
|
|
|
driver.driver_features &= ~(DRIVER_USE_AGP);
|
2012-06-25 17:58:49 +04:00
|
|
|
|
2010-05-27 23:40:25 +04:00
|
|
|
return drm_get_pci_dev(pdev, ent, &driver);
|
2009-01-05 00:55:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
i915_pci_remove(struct pci_dev *pdev)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = pci_get_drvdata(pdev);
|
|
|
|
|
|
|
|
drm_put_dev(dev);
|
|
|
|
}
|
|
|
|
|
2010-02-07 23:48:24 +03:00
|
|
|
static int i915_pm_suspend(struct device *dev)
|
2009-01-05 00:55:33 +03:00
|
|
|
{
|
2010-02-07 23:48:24 +03:00
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct drm_device *drm_dev = pci_get_drvdata(pdev);
|
2009-01-05 00:55:33 +03:00
|
|
|
|
2010-02-07 23:48:24 +03:00
|
|
|
if (!drm_dev || !drm_dev->dev_private) {
|
|
|
|
dev_err(dev, "DRM not initialized, aborting suspend.\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
2009-01-05 00:55:33 +03:00
|
|
|
|
2010-12-07 02:20:40 +03:00
|
|
|
if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
|
|
|
|
return 0;
|
|
|
|
|
2014-10-23 20:23:25 +04:00
|
|
|
return i915_drm_suspend(drm_dev);
|
2014-04-01 20:55:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_pm_suspend_late(struct device *dev)
|
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct drm_device *drm_dev = pci_get_drvdata(pdev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We have a suspedn ordering issue with the snd-hda driver also
|
|
|
|
* requiring our device to be power up. Due to the lack of a
|
|
|
|
* parent/child relationship we currently solve this with an late
|
|
|
|
* suspend hook.
|
|
|
|
*
|
|
|
|
* FIXME: This should be solved with a special hdmi sink device or
|
|
|
|
* similar so that power domains can be employed.
|
|
|
|
*/
|
|
|
|
if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
|
|
|
|
return 0;
|
2009-01-05 00:55:33 +03:00
|
|
|
|
2014-10-23 20:23:15 +04:00
|
|
|
return i915_drm_suspend_late(drm_dev);
|
2009-12-16 08:36:10 +03:00
|
|
|
}
|
|
|
|
|
2014-04-01 20:55:22 +04:00
|
|
|
static int i915_pm_resume_early(struct device *dev)
|
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct drm_device *drm_dev = pci_get_drvdata(pdev);
|
|
|
|
|
2014-10-23 20:23:19 +04:00
|
|
|
if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
|
|
|
|
return 0;
|
|
|
|
|
2014-10-23 20:23:25 +04:00
|
|
|
return i915_drm_resume_early(drm_dev);
|
2014-04-01 20:55:22 +04:00
|
|
|
}
|
|
|
|
|
2010-02-07 23:48:24 +03:00
|
|
|
static int i915_pm_resume(struct device *dev)
|
2009-12-16 08:36:10 +03:00
|
|
|
{
|
2010-02-07 23:48:24 +03:00
|
|
|
struct pci_dev *pdev = to_pci_dev(dev);
|
|
|
|
struct drm_device *drm_dev = pci_get_drvdata(pdev);
|
|
|
|
|
2014-10-23 20:23:19 +04:00
|
|
|
if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
|
|
|
|
return 0;
|
|
|
|
|
2014-10-23 20:23:18 +04:00
|
|
|
return i915_drm_resume(drm_dev);
|
2009-12-16 08:36:10 +03:00
|
|
|
}
|
|
|
|
|
2014-08-13 21:37:05 +04:00
|
|
|
static int hsw_suspend_complete(struct drm_i915_private *dev_priv)
|
2014-03-08 03:12:33 +04:00
|
|
|
{
|
2014-03-08 03:12:35 +04:00
|
|
|
hsw_enable_pc8(dev_priv);
|
2014-04-15 17:39:45 +04:00
|
|
|
|
|
|
|
return 0;
|
2014-03-08 03:12:33 +04:00
|
|
|
}
|
|
|
|
|
2014-05-05 16:19:56 +04:00
|
|
|
/*
|
|
|
|
* Save all Gunit registers that may be lost after a D3 and a subsequent
|
|
|
|
* S0i[R123] transition. The list of registers needing a save/restore is
|
|
|
|
* defined in the VLV2_S0IXRegs document. This documents marks all Gunit
|
|
|
|
* registers in the following way:
|
|
|
|
* - Driver: saved/restored by the driver
|
|
|
|
* - Punit : saved/restored by the Punit firmware
|
|
|
|
* - No, w/o marking: no need to save/restore, since the register is R/O or
|
|
|
|
* used internally by the HW in a way that doesn't depend
|
|
|
|
* keeping the content across a suspend/resume.
|
|
|
|
* - Debug : used for debugging
|
|
|
|
*
|
|
|
|
* We save/restore all registers marked with 'Driver', with the following
|
|
|
|
* exceptions:
|
|
|
|
* - Registers out of use, including also registers marked with 'Debug'.
|
|
|
|
* These have no effect on the driver's operation, so we don't save/restore
|
|
|
|
* them to reduce the overhead.
|
|
|
|
* - Registers that are fully setup by an initialization function called from
|
|
|
|
* the resume path. For example many clock gating and RPS/RC6 registers.
|
|
|
|
* - Registers that provide the right functionality with their reset defaults.
|
|
|
|
*
|
|
|
|
* TODO: Except for registers that based on the above 3 criteria can be safely
|
|
|
|
* ignored, we save/restore all others, practically treating the HW context as
|
|
|
|
* a black-box for the driver. Further investigation is needed to reduce the
|
|
|
|
* saved/restored registers even further, by following the same 3 criteria.
|
|
|
|
*/
|
|
|
|
static void vlv_save_gunit_s0ix_state(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* GAM 0x4000-0x4770 */
|
|
|
|
s->wr_watermark = I915_READ(GEN7_WR_WATERMARK);
|
|
|
|
s->gfx_prio_ctrl = I915_READ(GEN7_GFX_PRIO_CTRL);
|
|
|
|
s->arb_mode = I915_READ(ARB_MODE);
|
|
|
|
s->gfx_pend_tlb0 = I915_READ(GEN7_GFX_PEND_TLB0);
|
|
|
|
s->gfx_pend_tlb1 = I915_READ(GEN7_GFX_PEND_TLB1);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
|
|
|
|
s->lra_limits[i] = I915_READ(GEN7_LRA_LIMITS_BASE + i * 4);
|
|
|
|
|
|
|
|
s->media_max_req_count = I915_READ(GEN7_MEDIA_MAX_REQ_COUNT);
|
|
|
|
s->gfx_max_req_count = I915_READ(GEN7_MEDIA_MAX_REQ_COUNT);
|
|
|
|
|
|
|
|
s->render_hwsp = I915_READ(RENDER_HWS_PGA_GEN7);
|
|
|
|
s->ecochk = I915_READ(GAM_ECOCHK);
|
|
|
|
s->bsd_hwsp = I915_READ(BSD_HWS_PGA_GEN7);
|
|
|
|
s->blt_hwsp = I915_READ(BLT_HWS_PGA_GEN7);
|
|
|
|
|
|
|
|
s->tlb_rd_addr = I915_READ(GEN7_TLB_RD_ADDR);
|
|
|
|
|
|
|
|
/* MBC 0x9024-0x91D0, 0x8500 */
|
|
|
|
s->g3dctl = I915_READ(VLV_G3DCTL);
|
|
|
|
s->gsckgctl = I915_READ(VLV_GSCKGCTL);
|
|
|
|
s->mbctl = I915_READ(GEN6_MBCTL);
|
|
|
|
|
|
|
|
/* GCP 0x9400-0x9424, 0x8100-0x810C */
|
|
|
|
s->ucgctl1 = I915_READ(GEN6_UCGCTL1);
|
|
|
|
s->ucgctl3 = I915_READ(GEN6_UCGCTL3);
|
|
|
|
s->rcgctl1 = I915_READ(GEN6_RCGCTL1);
|
|
|
|
s->rcgctl2 = I915_READ(GEN6_RCGCTL2);
|
|
|
|
s->rstctl = I915_READ(GEN6_RSTCTL);
|
|
|
|
s->misccpctl = I915_READ(GEN7_MISCCPCTL);
|
|
|
|
|
|
|
|
/* GPM 0xA000-0xAA84, 0x8000-0x80FC */
|
|
|
|
s->gfxpause = I915_READ(GEN6_GFXPAUSE);
|
|
|
|
s->rpdeuhwtc = I915_READ(GEN6_RPDEUHWTC);
|
|
|
|
s->rpdeuc = I915_READ(GEN6_RPDEUC);
|
|
|
|
s->ecobus = I915_READ(ECOBUS);
|
|
|
|
s->pwrdwnupctl = I915_READ(VLV_PWRDWNUPCTL);
|
|
|
|
s->rp_down_timeout = I915_READ(GEN6_RP_DOWN_TIMEOUT);
|
|
|
|
s->rp_deucsw = I915_READ(GEN6_RPDEUCSW);
|
|
|
|
s->rcubmabdtmr = I915_READ(GEN6_RCUBMABDTMR);
|
|
|
|
s->rcedata = I915_READ(VLV_RCEDATA);
|
|
|
|
s->spare2gh = I915_READ(VLV_SPAREG2H);
|
|
|
|
|
|
|
|
/* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
|
|
|
|
s->gt_imr = I915_READ(GTIMR);
|
|
|
|
s->gt_ier = I915_READ(GTIER);
|
|
|
|
s->pm_imr = I915_READ(GEN6_PMIMR);
|
|
|
|
s->pm_ier = I915_READ(GEN6_PMIER);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
|
|
|
|
s->gt_scratch[i] = I915_READ(GEN7_GT_SCRATCH_BASE + i * 4);
|
|
|
|
|
|
|
|
/* GT SA CZ domain, 0x100000-0x138124 */
|
|
|
|
s->tilectl = I915_READ(TILECTL);
|
|
|
|
s->gt_fifoctl = I915_READ(GTFIFOCTL);
|
|
|
|
s->gtlc_wake_ctrl = I915_READ(VLV_GTLC_WAKE_CTRL);
|
|
|
|
s->gtlc_survive = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
|
|
|
|
s->pmwgicz = I915_READ(VLV_PMWGICZ);
|
|
|
|
|
|
|
|
/* Gunit-Display CZ domain, 0x182028-0x1821CF */
|
|
|
|
s->gu_ctl0 = I915_READ(VLV_GU_CTL0);
|
|
|
|
s->gu_ctl1 = I915_READ(VLV_GU_CTL1);
|
|
|
|
s->clock_gate_dis2 = I915_READ(VLV_GUNIT_CLOCK_GATE2);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Not saving any of:
|
|
|
|
* DFT, 0x9800-0x9EC0
|
|
|
|
* SARB, 0xB000-0xB1FC
|
|
|
|
* GAC, 0x5208-0x524C, 0x14000-0x14C000
|
|
|
|
* PCI CFG
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vlv_restore_gunit_s0ix_state(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
struct vlv_s0ix_state *s = &dev_priv->vlv_s0ix_state;
|
|
|
|
u32 val;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* GAM 0x4000-0x4770 */
|
|
|
|
I915_WRITE(GEN7_WR_WATERMARK, s->wr_watermark);
|
|
|
|
I915_WRITE(GEN7_GFX_PRIO_CTRL, s->gfx_prio_ctrl);
|
|
|
|
I915_WRITE(ARB_MODE, s->arb_mode | (0xffff << 16));
|
|
|
|
I915_WRITE(GEN7_GFX_PEND_TLB0, s->gfx_pend_tlb0);
|
|
|
|
I915_WRITE(GEN7_GFX_PEND_TLB1, s->gfx_pend_tlb1);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->lra_limits); i++)
|
|
|
|
I915_WRITE(GEN7_LRA_LIMITS_BASE + i * 4, s->lra_limits[i]);
|
|
|
|
|
|
|
|
I915_WRITE(GEN7_MEDIA_MAX_REQ_COUNT, s->media_max_req_count);
|
|
|
|
I915_WRITE(GEN7_MEDIA_MAX_REQ_COUNT, s->gfx_max_req_count);
|
|
|
|
|
|
|
|
I915_WRITE(RENDER_HWS_PGA_GEN7, s->render_hwsp);
|
|
|
|
I915_WRITE(GAM_ECOCHK, s->ecochk);
|
|
|
|
I915_WRITE(BSD_HWS_PGA_GEN7, s->bsd_hwsp);
|
|
|
|
I915_WRITE(BLT_HWS_PGA_GEN7, s->blt_hwsp);
|
|
|
|
|
|
|
|
I915_WRITE(GEN7_TLB_RD_ADDR, s->tlb_rd_addr);
|
|
|
|
|
|
|
|
/* MBC 0x9024-0x91D0, 0x8500 */
|
|
|
|
I915_WRITE(VLV_G3DCTL, s->g3dctl);
|
|
|
|
I915_WRITE(VLV_GSCKGCTL, s->gsckgctl);
|
|
|
|
I915_WRITE(GEN6_MBCTL, s->mbctl);
|
|
|
|
|
|
|
|
/* GCP 0x9400-0x9424, 0x8100-0x810C */
|
|
|
|
I915_WRITE(GEN6_UCGCTL1, s->ucgctl1);
|
|
|
|
I915_WRITE(GEN6_UCGCTL3, s->ucgctl3);
|
|
|
|
I915_WRITE(GEN6_RCGCTL1, s->rcgctl1);
|
|
|
|
I915_WRITE(GEN6_RCGCTL2, s->rcgctl2);
|
|
|
|
I915_WRITE(GEN6_RSTCTL, s->rstctl);
|
|
|
|
I915_WRITE(GEN7_MISCCPCTL, s->misccpctl);
|
|
|
|
|
|
|
|
/* GPM 0xA000-0xAA84, 0x8000-0x80FC */
|
|
|
|
I915_WRITE(GEN6_GFXPAUSE, s->gfxpause);
|
|
|
|
I915_WRITE(GEN6_RPDEUHWTC, s->rpdeuhwtc);
|
|
|
|
I915_WRITE(GEN6_RPDEUC, s->rpdeuc);
|
|
|
|
I915_WRITE(ECOBUS, s->ecobus);
|
|
|
|
I915_WRITE(VLV_PWRDWNUPCTL, s->pwrdwnupctl);
|
|
|
|
I915_WRITE(GEN6_RP_DOWN_TIMEOUT,s->rp_down_timeout);
|
|
|
|
I915_WRITE(GEN6_RPDEUCSW, s->rp_deucsw);
|
|
|
|
I915_WRITE(GEN6_RCUBMABDTMR, s->rcubmabdtmr);
|
|
|
|
I915_WRITE(VLV_RCEDATA, s->rcedata);
|
|
|
|
I915_WRITE(VLV_SPAREG2H, s->spare2gh);
|
|
|
|
|
|
|
|
/* Display CZ domain, 0x4400C-0x4402C, 0x4F000-0x4F11F */
|
|
|
|
I915_WRITE(GTIMR, s->gt_imr);
|
|
|
|
I915_WRITE(GTIER, s->gt_ier);
|
|
|
|
I915_WRITE(GEN6_PMIMR, s->pm_imr);
|
|
|
|
I915_WRITE(GEN6_PMIER, s->pm_ier);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(s->gt_scratch); i++)
|
|
|
|
I915_WRITE(GEN7_GT_SCRATCH_BASE + i * 4, s->gt_scratch[i]);
|
|
|
|
|
|
|
|
/* GT SA CZ domain, 0x100000-0x138124 */
|
|
|
|
I915_WRITE(TILECTL, s->tilectl);
|
|
|
|
I915_WRITE(GTFIFOCTL, s->gt_fifoctl);
|
|
|
|
/*
|
|
|
|
* Preserve the GT allow wake and GFX force clock bit, they are not
|
|
|
|
* be restored, as they are used to control the s0ix suspend/resume
|
|
|
|
* sequence by the caller.
|
|
|
|
*/
|
|
|
|
val = I915_READ(VLV_GTLC_WAKE_CTRL);
|
|
|
|
val &= VLV_GTLC_ALLOWWAKEREQ;
|
|
|
|
val |= s->gtlc_wake_ctrl & ~VLV_GTLC_ALLOWWAKEREQ;
|
|
|
|
I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
|
|
|
|
|
|
|
|
val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
|
|
|
|
val &= VLV_GFX_CLK_FORCE_ON_BIT;
|
|
|
|
val |= s->gtlc_survive & ~VLV_GFX_CLK_FORCE_ON_BIT;
|
|
|
|
I915_WRITE(VLV_GTLC_SURVIVABILITY_REG, val);
|
|
|
|
|
|
|
|
I915_WRITE(VLV_PMWGICZ, s->pmwgicz);
|
|
|
|
|
|
|
|
/* Gunit-Display CZ domain, 0x182028-0x1821CF */
|
|
|
|
I915_WRITE(VLV_GU_CTL0, s->gu_ctl0);
|
|
|
|
I915_WRITE(VLV_GU_CTL1, s->gu_ctl1);
|
|
|
|
I915_WRITE(VLV_GUNIT_CLOCK_GATE2, s->clock_gate_dis2);
|
|
|
|
}
|
|
|
|
|
2014-04-18 17:35:02 +04:00
|
|
|
int vlv_force_gfx_clock(struct drm_i915_private *dev_priv, bool force_on)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
|
|
|
|
WARN_ON(!!(val & VLV_GFX_CLK_FORCE_ON_BIT) == force_on);
|
|
|
|
|
|
|
|
#define COND (I915_READ(VLV_GTLC_SURVIVABILITY_REG) & VLV_GFX_CLK_STATUS_BIT)
|
|
|
|
/* Wait for a previous force-off to settle */
|
|
|
|
if (force_on) {
|
2014-04-14 21:24:43 +04:00
|
|
|
err = wait_for(!COND, 20);
|
2014-04-18 17:35:02 +04:00
|
|
|
if (err) {
|
|
|
|
DRM_ERROR("timeout waiting for GFX clock force-off (%08x)\n",
|
|
|
|
I915_READ(VLV_GTLC_SURVIVABILITY_REG));
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val = I915_READ(VLV_GTLC_SURVIVABILITY_REG);
|
|
|
|
val &= ~VLV_GFX_CLK_FORCE_ON_BIT;
|
|
|
|
if (force_on)
|
|
|
|
val |= VLV_GFX_CLK_FORCE_ON_BIT;
|
|
|
|
I915_WRITE(VLV_GTLC_SURVIVABILITY_REG, val);
|
|
|
|
|
|
|
|
if (!force_on)
|
|
|
|
return 0;
|
|
|
|
|
2014-04-14 21:24:43 +04:00
|
|
|
err = wait_for(COND, 20);
|
2014-04-18 17:35:02 +04:00
|
|
|
if (err)
|
|
|
|
DRM_ERROR("timeout waiting for GFX clock force-on (%08x)\n",
|
|
|
|
I915_READ(VLV_GTLC_SURVIVABILITY_REG));
|
|
|
|
|
|
|
|
return err;
|
|
|
|
#undef COND
|
|
|
|
}
|
|
|
|
|
2014-05-05 16:19:56 +04:00
|
|
|
static int vlv_allow_gt_wake(struct drm_i915_private *dev_priv, bool allow)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
val = I915_READ(VLV_GTLC_WAKE_CTRL);
|
|
|
|
val &= ~VLV_GTLC_ALLOWWAKEREQ;
|
|
|
|
if (allow)
|
|
|
|
val |= VLV_GTLC_ALLOWWAKEREQ;
|
|
|
|
I915_WRITE(VLV_GTLC_WAKE_CTRL, val);
|
|
|
|
POSTING_READ(VLV_GTLC_WAKE_CTRL);
|
|
|
|
|
|
|
|
#define COND (!!(I915_READ(VLV_GTLC_PW_STATUS) & VLV_GTLC_ALLOWWAKEACK) == \
|
|
|
|
allow)
|
|
|
|
err = wait_for(COND, 1);
|
|
|
|
if (err)
|
|
|
|
DRM_ERROR("timeout disabling GT waking\n");
|
|
|
|
return err;
|
|
|
|
#undef COND
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vlv_wait_for_gt_wells(struct drm_i915_private *dev_priv,
|
|
|
|
bool wait_for_on)
|
|
|
|
{
|
|
|
|
u32 mask;
|
|
|
|
u32 val;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
mask = VLV_GTLC_PW_MEDIA_STATUS_MASK | VLV_GTLC_PW_RENDER_STATUS_MASK;
|
|
|
|
val = wait_for_on ? mask : 0;
|
|
|
|
#define COND ((I915_READ(VLV_GTLC_PW_STATUS) & mask) == val)
|
|
|
|
if (COND)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
DRM_DEBUG_KMS("waiting for GT wells to go %s (%08x)\n",
|
|
|
|
wait_for_on ? "on" : "off",
|
|
|
|
I915_READ(VLV_GTLC_PW_STATUS));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RC6 transitioning can be delayed up to 2 msec (see
|
|
|
|
* valleyview_enable_rps), use 3 msec for safety.
|
|
|
|
*/
|
|
|
|
err = wait_for(COND, 3);
|
|
|
|
if (err)
|
|
|
|
DRM_ERROR("timeout waiting for GT wells to go %s\n",
|
|
|
|
wait_for_on ? "on" : "off");
|
|
|
|
|
|
|
|
return err;
|
|
|
|
#undef COND
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vlv_check_no_gt_access(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
if (!(I915_READ(VLV_GTLC_PW_STATUS) & VLV_GTLC_ALLOWWAKEERR))
|
|
|
|
return;
|
|
|
|
|
|
|
|
DRM_ERROR("GT register access while GT waking disabled\n");
|
|
|
|
I915_WRITE(VLV_GTLC_PW_STATUS, VLV_GTLC_ALLOWWAKEERR);
|
|
|
|
}
|
|
|
|
|
2014-08-13 21:37:05 +04:00
|
|
|
static int vlv_suspend_complete(struct drm_i915_private *dev_priv)
|
2014-05-05 16:19:56 +04:00
|
|
|
{
|
|
|
|
u32 mask;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bspec defines the following GT well on flags as debug only, so
|
|
|
|
* don't treat them as hard failures.
|
|
|
|
*/
|
|
|
|
(void)vlv_wait_for_gt_wells(dev_priv, false);
|
|
|
|
|
|
|
|
mask = VLV_GTLC_RENDER_CTX_EXISTS | VLV_GTLC_MEDIA_CTX_EXISTS;
|
|
|
|
WARN_ON((I915_READ(VLV_GTLC_WAKE_CTRL) & mask) != mask);
|
|
|
|
|
|
|
|
vlv_check_no_gt_access(dev_priv);
|
|
|
|
|
|
|
|
err = vlv_force_gfx_clock(dev_priv, true);
|
|
|
|
if (err)
|
|
|
|
goto err1;
|
|
|
|
|
|
|
|
err = vlv_allow_gt_wake(dev_priv, false);
|
|
|
|
if (err)
|
|
|
|
goto err2;
|
|
|
|
vlv_save_gunit_s0ix_state(dev_priv);
|
|
|
|
|
|
|
|
err = vlv_force_gfx_clock(dev_priv, false);
|
|
|
|
if (err)
|
|
|
|
goto err2;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err2:
|
|
|
|
/* For safety always re-enable waking and disable gfx clock forcing */
|
|
|
|
vlv_allow_gt_wake(dev_priv, true);
|
|
|
|
err1:
|
|
|
|
vlv_force_gfx_clock(dev_priv, false);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2014-08-13 21:37:06 +04:00
|
|
|
static int vlv_resume_prepare(struct drm_i915_private *dev_priv,
|
|
|
|
bool rpm_resume)
|
2014-05-05 16:19:56 +04:00
|
|
|
{
|
|
|
|
struct drm_device *dev = dev_priv->dev;
|
|
|
|
int err;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If any of the steps fail just try to continue, that's the best we
|
|
|
|
* can do at this point. Return the first error code (which will also
|
|
|
|
* leave RPM permanently disabled).
|
|
|
|
*/
|
|
|
|
ret = vlv_force_gfx_clock(dev_priv, true);
|
|
|
|
|
|
|
|
vlv_restore_gunit_s0ix_state(dev_priv);
|
|
|
|
|
|
|
|
err = vlv_allow_gt_wake(dev_priv, true);
|
|
|
|
if (!ret)
|
|
|
|
ret = err;
|
|
|
|
|
|
|
|
err = vlv_force_gfx_clock(dev_priv, false);
|
|
|
|
if (!ret)
|
|
|
|
ret = err;
|
|
|
|
|
|
|
|
vlv_check_no_gt_access(dev_priv);
|
|
|
|
|
2014-08-13 21:37:06 +04:00
|
|
|
if (rpm_resume) {
|
|
|
|
intel_init_clock_gating(dev);
|
|
|
|
i915_gem_restore_fences(dev);
|
|
|
|
}
|
2014-05-05 16:19:56 +04:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-03-08 03:12:33 +04:00
|
|
|
static int intel_runtime_suspend(struct device *device)
|
2013-12-07 02:32:13 +04:00
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(device);
|
|
|
|
struct drm_device *dev = pci_get_drvdata(pdev);
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-04-15 17:39:45 +04:00
|
|
|
int ret;
|
2013-12-07 02:32:13 +04:00
|
|
|
|
2014-04-14 21:24:36 +04:00
|
|
|
if (WARN_ON_ONCE(!(dev_priv->rps.enabled && intel_enable_rc6(dev))))
|
2014-04-14 21:24:29 +04:00
|
|
|
return -ENODEV;
|
|
|
|
|
2014-08-26 14:26:56 +04:00
|
|
|
if (WARN_ON_ONCE(!HAS_RUNTIME_PM(dev)))
|
|
|
|
return -ENODEV;
|
|
|
|
|
2014-02-21 20:52:26 +04:00
|
|
|
assert_force_wake_inactive(dev_priv);
|
2013-12-07 02:32:13 +04:00
|
|
|
|
|
|
|
DRM_DEBUG_KMS("Suspending device\n");
|
|
|
|
|
2014-05-07 20:57:49 +04:00
|
|
|
/*
|
|
|
|
* We could deadlock here in case another thread holding struct_mutex
|
|
|
|
* calls RPM suspend concurrently, since the RPM suspend will wait
|
|
|
|
* first for this RPM suspend to finish. In this case the concurrent
|
|
|
|
* RPM resume will be followed by its RPM suspend counterpart. Still
|
|
|
|
* for consistency return -EAGAIN, which will reschedule this suspend.
|
|
|
|
*/
|
|
|
|
if (!mutex_trylock(&dev->struct_mutex)) {
|
|
|
|
DRM_DEBUG_KMS("device lock contention, deffering suspend\n");
|
|
|
|
/*
|
|
|
|
* Bump the expiration timestamp, otherwise the suspend won't
|
|
|
|
* be rescheduled.
|
|
|
|
*/
|
|
|
|
pm_runtime_mark_last_busy(device);
|
|
|
|
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* We are safe here against re-faults, since the fault handler takes
|
|
|
|
* an RPM reference.
|
|
|
|
*/
|
|
|
|
i915_gem_release_all_mmaps(dev_priv);
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
2014-10-30 20:59:31 +03:00
|
|
|
intel_suspend_gt_powersave(dev);
|
2014-11-19 16:30:05 +03:00
|
|
|
intel_runtime_pm_disable_interrupts(dev_priv);
|
2014-04-14 21:24:37 +04:00
|
|
|
|
2014-08-13 21:37:05 +04:00
|
|
|
ret = intel_suspend_complete(dev_priv);
|
2014-04-15 17:39:45 +04:00
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("Runtime suspend failed, disabling it (%d)\n", ret);
|
2014-09-30 12:56:44 +04:00
|
|
|
intel_runtime_pm_enable_interrupts(dev_priv);
|
2014-04-15 17:39:45 +04:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
drm/i915: make PC8 be part of runtime PM suspend/resume
Currently, when our driver becomes idle for i915.pc8_timeout (default:
5s) we enable PC8, so we save some power, but not everything we can.
Then, while PC8 is enabled, if we stay idle for more
autosuspend_delay_ms (default: 10s) we'll enter runtime PM and put the
graphics device in D3 state, saving even more power. The two features
are separate things with increasing levels of power savings, but if we
disable PC8 we'll never get into D3.
While from the modularity point of view it would be nice to keep these
features as separate, we have reasons to merge them:
- We are not aware of anybody wanting a "PC8 without D3" environment.
- If we keep both features as separate, we'll have to to test both
PC8 and PC8+D3 code paths. We're already having a major pain to
make QA do automated testing of just one thing, testing both paths
will cost even more.
- Only Haswell+ supports PC8, so if we want to add runtime PM support
to, for example, IVB, we'll have to copy some code from the PC8
feature to runtime PM, so merging both features as a single thing
will make it easier for enabling runtime PM on other platforms.
This patch only does the very basic steps required to have PC8 and
runtime PM merged on a single feature: the next patches will take care
of cleaning up everything.
v2: - Rebase.
v3: - Rebase.
- Fully remove the deprecated i915 params since Daniel doesn't
consider them as part of the ABI.
v4: - Rebase.
- Fix typo in the commit message.
v5: - Rebase, again.
- Add a huge comment explaining the different forcewake usage
(Chris, Daniel).
- Use open-coded forcewake functions (Daniel).
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-03-08 03:08:05 +04:00
|
|
|
|
2013-12-13 21:22:30 +04:00
|
|
|
del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
|
2013-12-07 02:32:13 +04:00
|
|
|
dev_priv->pm.suspended = true;
|
2014-01-15 03:36:15 +04:00
|
|
|
|
|
|
|
/*
|
2014-08-22 00:09:38 +04:00
|
|
|
* FIXME: We really should find a document that references the arguments
|
|
|
|
* used below!
|
2014-01-15 03:36:15 +04:00
|
|
|
*/
|
2014-08-22 00:09:38 +04:00
|
|
|
if (IS_HASWELL(dev)) {
|
|
|
|
/*
|
|
|
|
* current versions of firmware which depend on this opregion
|
|
|
|
* notification have repurposed the D1 definition to mean
|
|
|
|
* "runtime suspended" vs. what you would normally expect (D3)
|
|
|
|
* to distinguish it from notifications that might be sent via
|
|
|
|
* the suspend path.
|
|
|
|
*/
|
|
|
|
intel_opregion_notify_adapter(dev, PCI_D1);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* On Broadwell, if we use PCI_D1 the PCH DDI ports will stop
|
|
|
|
* being detected, and the call we do at intel_runtime_resume()
|
|
|
|
* won't be able to restore them. Since PCI_D3hot matches the
|
|
|
|
* actual specification and appears to be working, use it. Let's
|
|
|
|
* assume the other non-Haswell platforms will stay the same as
|
|
|
|
* Broadwell.
|
|
|
|
*/
|
|
|
|
intel_opregion_notify_adapter(dev, PCI_D3hot);
|
|
|
|
}
|
2013-12-07 02:32:13 +04:00
|
|
|
|
drm/i915: make PC8 be part of runtime PM suspend/resume
Currently, when our driver becomes idle for i915.pc8_timeout (default:
5s) we enable PC8, so we save some power, but not everything we can.
Then, while PC8 is enabled, if we stay idle for more
autosuspend_delay_ms (default: 10s) we'll enter runtime PM and put the
graphics device in D3 state, saving even more power. The two features
are separate things with increasing levels of power savings, but if we
disable PC8 we'll never get into D3.
While from the modularity point of view it would be nice to keep these
features as separate, we have reasons to merge them:
- We are not aware of anybody wanting a "PC8 without D3" environment.
- If we keep both features as separate, we'll have to to test both
PC8 and PC8+D3 code paths. We're already having a major pain to
make QA do automated testing of just one thing, testing both paths
will cost even more.
- Only Haswell+ supports PC8, so if we want to add runtime PM support
to, for example, IVB, we'll have to copy some code from the PC8
feature to runtime PM, so merging both features as a single thing
will make it easier for enabling runtime PM on other platforms.
This patch only does the very basic steps required to have PC8 and
runtime PM merged on a single feature: the next patches will take care
of cleaning up everything.
v2: - Rebase.
v3: - Rebase.
- Fully remove the deprecated i915 params since Daniel doesn't
consider them as part of the ABI.
v4: - Rebase.
- Fix typo in the commit message.
v5: - Rebase, again.
- Add a huge comment explaining the different forcewake usage
(Chris, Daniel).
- Use open-coded forcewake functions (Daniel).
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-03-08 03:08:05 +04:00
|
|
|
DRM_DEBUG_KMS("Device suspended\n");
|
2013-12-07 02:32:13 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-08 03:12:33 +04:00
|
|
|
static int intel_runtime_resume(struct device *device)
|
2013-12-07 02:32:13 +04:00
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(device);
|
|
|
|
struct drm_device *dev = pci_get_drvdata(pdev);
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
2014-10-27 22:54:32 +03:00
|
|
|
int ret = 0;
|
2013-12-07 02:32:13 +04:00
|
|
|
|
2014-08-26 14:26:56 +04:00
|
|
|
if (WARN_ON_ONCE(!HAS_RUNTIME_PM(dev)))
|
|
|
|
return -ENODEV;
|
2013-12-07 02:32:13 +04:00
|
|
|
|
|
|
|
DRM_DEBUG_KMS("Resuming device\n");
|
|
|
|
|
2013-12-07 02:34:21 +04:00
|
|
|
intel_opregion_notify_adapter(dev, PCI_D0);
|
2013-12-07 02:32:13 +04:00
|
|
|
dev_priv->pm.suspended = false;
|
|
|
|
|
2014-10-27 22:54:32 +03:00
|
|
|
if (IS_GEN6(dev_priv))
|
|
|
|
intel_init_pch_refclk(dev);
|
|
|
|
else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
|
|
|
|
hsw_disable_pc8(dev_priv);
|
|
|
|
else if (IS_VALLEYVIEW(dev_priv))
|
|
|
|
ret = vlv_resume_prepare(dev_priv, true);
|
|
|
|
|
2014-04-15 17:39:45 +04:00
|
|
|
/*
|
|
|
|
* No point of rolling back things in case of an error, as the best
|
|
|
|
* we can do is to hope that things will still work (and disable RPM).
|
|
|
|
*/
|
2014-04-14 21:24:39 +04:00
|
|
|
i915_gem_init_swizzling(dev);
|
|
|
|
gen6_update_ring_freq(dev);
|
|
|
|
|
2014-09-30 12:56:44 +04:00
|
|
|
intel_runtime_pm_enable_interrupts(dev_priv);
|
2014-10-30 20:59:31 +03:00
|
|
|
intel_enable_gt_powersave(dev);
|
2014-04-14 21:24:37 +04:00
|
|
|
|
2014-04-15 17:39:45 +04:00
|
|
|
if (ret)
|
|
|
|
DRM_ERROR("Runtime resume failed, disabling it (%d)\n", ret);
|
|
|
|
else
|
|
|
|
DRM_DEBUG_KMS("Device resumed\n");
|
|
|
|
|
|
|
|
return ret;
|
2013-12-07 02:32:13 +04:00
|
|
|
}
|
|
|
|
|
2014-08-13 21:37:06 +04:00
|
|
|
/*
|
|
|
|
* This function implements common functionality of runtime and system
|
|
|
|
* suspend sequence.
|
|
|
|
*/
|
2014-08-13 21:37:05 +04:00
|
|
|
static int intel_suspend_complete(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = dev_priv->dev;
|
|
|
|
int ret;
|
|
|
|
|
2014-08-26 14:26:56 +04:00
|
|
|
if (IS_HASWELL(dev) || IS_BROADWELL(dev))
|
2014-08-13 21:37:05 +04:00
|
|
|
ret = hsw_suspend_complete(dev_priv);
|
2014-08-26 14:26:56 +04:00
|
|
|
else if (IS_VALLEYVIEW(dev))
|
2014-08-13 21:37:05 +04:00
|
|
|
ret = vlv_suspend_complete(dev_priv);
|
2014-08-26 14:26:56 +04:00
|
|
|
else
|
|
|
|
ret = 0;
|
2014-08-13 21:37:05 +04:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-06-06 18:40:20 +04:00
|
|
|
static const struct dev_pm_ops i915_pm_ops = {
|
2014-10-23 20:23:28 +04:00
|
|
|
/*
|
|
|
|
* S0ix (via system suspend) and S3 event handlers [PMSG_SUSPEND,
|
|
|
|
* PMSG_RESUME]
|
|
|
|
*/
|
2011-08-16 23:34:10 +04:00
|
|
|
.suspend = i915_pm_suspend,
|
2014-04-01 20:55:22 +04:00
|
|
|
.suspend_late = i915_pm_suspend_late,
|
|
|
|
.resume_early = i915_pm_resume_early,
|
2011-08-16 23:34:10 +04:00
|
|
|
.resume = i915_pm_resume,
|
2014-10-23 20:23:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* S4 event handlers
|
|
|
|
* @freeze, @freeze_late : called (1) before creating the
|
|
|
|
* hibernation image [PMSG_FREEZE] and
|
|
|
|
* (2) after rebooting, before restoring
|
|
|
|
* the image [PMSG_QUIESCE]
|
|
|
|
* @thaw, @thaw_early : called (1) after creating the hibernation
|
|
|
|
* image, before writing it [PMSG_THAW]
|
|
|
|
* and (2) after failing to create or
|
|
|
|
* restore the image [PMSG_RECOVER]
|
|
|
|
* @poweroff, @poweroff_late: called after writing the hibernation
|
|
|
|
* image, before rebooting [PMSG_HIBERNATE]
|
|
|
|
* @restore, @restore_early : called after rebooting and restoring the
|
|
|
|
* hibernation image [PMSG_RESTORE]
|
|
|
|
*/
|
2014-10-23 20:23:24 +04:00
|
|
|
.freeze = i915_pm_suspend,
|
|
|
|
.freeze_late = i915_pm_suspend_late,
|
|
|
|
.thaw_early = i915_pm_resume_early,
|
|
|
|
.thaw = i915_pm_resume,
|
|
|
|
.poweroff = i915_pm_suspend,
|
2014-10-23 20:23:26 +04:00
|
|
|
.poweroff_late = i915_pm_suspend_late,
|
2014-04-01 20:55:22 +04:00
|
|
|
.restore_early = i915_pm_resume_early,
|
2011-08-16 23:34:10 +04:00
|
|
|
.restore = i915_pm_resume,
|
2014-10-23 20:23:28 +04:00
|
|
|
|
|
|
|
/* S0ix (via runtime suspend) event handlers */
|
2014-03-08 03:12:33 +04:00
|
|
|
.runtime_suspend = intel_runtime_suspend,
|
|
|
|
.runtime_resume = intel_runtime_resume,
|
2009-12-16 08:36:10 +03:00
|
|
|
};
|
|
|
|
|
2012-05-17 15:27:22 +04:00
|
|
|
static const struct vm_operations_struct i915_gem_vm_ops = {
|
2008-11-12 21:03:55 +03:00
|
|
|
.fault = i915_gem_fault,
|
2009-02-12 01:01:46 +03:00
|
|
|
.open = drm_gem_vm_open,
|
|
|
|
.close = drm_gem_vm_close,
|
2008-11-12 21:03:55 +03:00
|
|
|
};
|
|
|
|
|
2011-10-31 18:28:57 +04:00
|
|
|
static const struct file_operations i915_driver_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = drm_open,
|
|
|
|
.release = drm_release,
|
|
|
|
.unlocked_ioctl = drm_ioctl,
|
|
|
|
.mmap = drm_gem_mmap,
|
|
|
|
.poll = drm_poll,
|
|
|
|
.read = drm_read,
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
.compat_ioctl = i915_compat_ioctl,
|
|
|
|
#endif
|
|
|
|
.llseek = noop_llseek,
|
|
|
|
};
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
static struct drm_driver driver = {
|
2011-08-25 21:55:54 +04:00
|
|
|
/* Don't use MTRRs here; the Xserver or userspace app should
|
|
|
|
* deal with them for Intel hardware.
|
2005-11-11 15:30:27 +03:00
|
|
|
*/
|
2008-07-30 23:06:12 +04:00
|
|
|
.driver_features =
|
2013-12-11 14:34:33 +04:00
|
|
|
DRIVER_USE_AGP |
|
2013-08-25 20:29:01 +04:00
|
|
|
DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME |
|
|
|
|
DRIVER_RENDER,
|
2005-11-10 14:16:34 +03:00
|
|
|
.load = i915_driver_load,
|
2007-11-22 07:14:14 +03:00
|
|
|
.unload = i915_driver_unload,
|
2008-07-30 23:06:12 +04:00
|
|
|
.open = i915_driver_open,
|
2005-11-10 14:16:34 +03:00
|
|
|
.lastclose = i915_driver_lastclose,
|
|
|
|
.preclose = i915_driver_preclose,
|
2008-07-30 23:06:12 +04:00
|
|
|
.postclose = i915_driver_postclose,
|
2014-08-29 14:12:43 +04:00
|
|
|
.set_busid = drm_pci_set_busid,
|
2010-01-09 02:45:33 +03:00
|
|
|
|
|
|
|
/* Used in place of i915_pm_ops for non-DRIVER_MODESET */
|
2014-10-23 20:23:27 +04:00
|
|
|
.suspend = i915_suspend_legacy,
|
2014-04-01 20:55:22 +04:00
|
|
|
.resume = i915_resume_legacy,
|
2010-01-09 02:45:33 +03:00
|
|
|
|
2005-07-10 11:31:26 +04:00
|
|
|
.device_is_agp = i915_driver_device_is_agp,
|
2009-02-18 04:08:49 +03:00
|
|
|
#if defined(CONFIG_DEBUG_FS)
|
2009-07-02 06:26:52 +04:00
|
|
|
.debugfs_init = i915_debugfs_init,
|
|
|
|
.debugfs_cleanup = i915_debugfs_cleanup,
|
2009-02-18 04:08:49 +03:00
|
|
|
#endif
|
2008-07-30 23:06:12 +04:00
|
|
|
.gem_free_object = i915_gem_free_object,
|
2008-11-12 21:03:55 +03:00
|
|
|
.gem_vm_ops = &i915_gem_vm_ops,
|
2012-05-10 17:25:09 +04:00
|
|
|
|
|
|
|
.prime_handle_to_fd = drm_gem_prime_handle_to_fd,
|
|
|
|
.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
|
|
|
|
.gem_prime_export = i915_gem_prime_export,
|
|
|
|
.gem_prime_import = i915_gem_prime_import,
|
|
|
|
|
2011-02-07 05:16:14 +03:00
|
|
|
.dumb_create = i915_gem_dumb_create,
|
2014-11-20 11:56:25 +03:00
|
|
|
.dumb_map_offset = i915_gem_dumb_map_offset,
|
2013-07-16 11:12:04 +04:00
|
|
|
.dumb_destroy = drm_gem_dumb_destroy,
|
2005-04-17 02:20:36 +04:00
|
|
|
.ioctls = i915_ioctls,
|
2011-10-31 18:28:57 +04:00
|
|
|
.fops = &i915_driver_fops,
|
2005-11-10 14:16:34 +03:00
|
|
|
.name = DRIVER_NAME,
|
|
|
|
.desc = DRIVER_DESC,
|
|
|
|
.date = DRIVER_DATE,
|
|
|
|
.major = DRIVER_MAJOR,
|
|
|
|
.minor = DRIVER_MINOR,
|
|
|
|
.patchlevel = DRIVER_PATCHLEVEL,
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
2010-12-14 20:16:38 +03:00
|
|
|
static struct pci_driver i915_pci_driver = {
|
|
|
|
.name = DRIVER_NAME,
|
|
|
|
.id_table = pciidlist,
|
|
|
|
.probe = i915_pci_probe,
|
|
|
|
.remove = i915_pci_remove,
|
|
|
|
.driver.pm = &i915_pm_ops,
|
|
|
|
};
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
static int __init i915_init(void)
|
|
|
|
{
|
|
|
|
driver.num_ioctls = i915_max_ioctl;
|
DRM: i915: add mode setting support
This commit adds i915 driver support for the DRM mode setting APIs.
Currently, VGA, LVDS, SDVO DVI & VGA, TV and DVO LVDS outputs are
supported. HDMI, DisplayPort and additional SDVO output support will
follow.
Support for the mode setting code is controlled by the new 'modeset'
module option. A new config option, CONFIG_DRM_I915_KMS controls the
default behavior, and whether a PCI ID list is built into the module for
use by user level module utilities.
Note that if mode setting is enabled, user level drivers that access
display registers directly or that don't use the kernel graphics memory
manager will likely corrupt kernel graphics memory, disrupt output
configuration (possibly leading to hangs and/or blank displays), and
prevent panic/oops messages from appearing. So use caution when
enabling this code; be sure your user level code supports the new
interfaces.
A new SysRq key, 'g', provides emergency support for switching back to
the kernel's framebuffer console; which is useful for testing.
Co-authors: Dave Airlie <airlied@linux.ie>, Hong Liu <hong.liu@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2008-11-08 01:24:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If CONFIG_DRM_I915_KMS is set, default to KMS unless
|
|
|
|
* explicitly disabled with the module pararmeter.
|
|
|
|
*
|
|
|
|
* Otherwise, just follow the parameter (defaulting to off).
|
|
|
|
*
|
|
|
|
* Allow optional vga_text_mode_force boot option to override
|
|
|
|
* the default behavior.
|
|
|
|
*/
|
|
|
|
#if defined(CONFIG_DRM_I915_KMS)
|
2014-01-21 13:24:25 +04:00
|
|
|
if (i915.modeset != 0)
|
DRM: i915: add mode setting support
This commit adds i915 driver support for the DRM mode setting APIs.
Currently, VGA, LVDS, SDVO DVI & VGA, TV and DVO LVDS outputs are
supported. HDMI, DisplayPort and additional SDVO output support will
follow.
Support for the mode setting code is controlled by the new 'modeset'
module option. A new config option, CONFIG_DRM_I915_KMS controls the
default behavior, and whether a PCI ID list is built into the module for
use by user level module utilities.
Note that if mode setting is enabled, user level drivers that access
display registers directly or that don't use the kernel graphics memory
manager will likely corrupt kernel graphics memory, disrupt output
configuration (possibly leading to hangs and/or blank displays), and
prevent panic/oops messages from appearing. So use caution when
enabling this code; be sure your user level code supports the new
interfaces.
A new SysRq key, 'g', provides emergency support for switching back to
the kernel's framebuffer console; which is useful for testing.
Co-authors: Dave Airlie <airlied@linux.ie>, Hong Liu <hong.liu@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2008-11-08 01:24:08 +03:00
|
|
|
driver.driver_features |= DRIVER_MODESET;
|
|
|
|
#endif
|
2014-01-21 13:24:25 +04:00
|
|
|
if (i915.modeset == 1)
|
DRM: i915: add mode setting support
This commit adds i915 driver support for the DRM mode setting APIs.
Currently, VGA, LVDS, SDVO DVI & VGA, TV and DVO LVDS outputs are
supported. HDMI, DisplayPort and additional SDVO output support will
follow.
Support for the mode setting code is controlled by the new 'modeset'
module option. A new config option, CONFIG_DRM_I915_KMS controls the
default behavior, and whether a PCI ID list is built into the module for
use by user level module utilities.
Note that if mode setting is enabled, user level drivers that access
display registers directly or that don't use the kernel graphics memory
manager will likely corrupt kernel graphics memory, disrupt output
configuration (possibly leading to hangs and/or blank displays), and
prevent panic/oops messages from appearing. So use caution when
enabling this code; be sure your user level code supports the new
interfaces.
A new SysRq key, 'g', provides emergency support for switching back to
the kernel's framebuffer console; which is useful for testing.
Co-authors: Dave Airlie <airlied@linux.ie>, Hong Liu <hong.liu@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2008-11-08 01:24:08 +03:00
|
|
|
driver.driver_features |= DRIVER_MODESET;
|
|
|
|
|
|
|
|
#ifdef CONFIG_VGA_CONSOLE
|
2014-01-21 13:24:25 +04:00
|
|
|
if (vgacon_text_force() && i915.modeset == -1)
|
DRM: i915: add mode setting support
This commit adds i915 driver support for the DRM mode setting APIs.
Currently, VGA, LVDS, SDVO DVI & VGA, TV and DVO LVDS outputs are
supported. HDMI, DisplayPort and additional SDVO output support will
follow.
Support for the mode setting code is controlled by the new 'modeset'
module option. A new config option, CONFIG_DRM_I915_KMS controls the
default behavior, and whether a PCI ID list is built into the module for
use by user level module utilities.
Note that if mode setting is enabled, user level drivers that access
display registers directly or that don't use the kernel graphics memory
manager will likely corrupt kernel graphics memory, disrupt output
configuration (possibly leading to hangs and/or blank displays), and
prevent panic/oops messages from appearing. So use caution when
enabling this code; be sure your user level code supports the new
interfaces.
A new SysRq key, 'g', provides emergency support for switching back to
the kernel's framebuffer console; which is useful for testing.
Co-authors: Dave Airlie <airlied@linux.ie>, Hong Liu <hong.liu@intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2008-11-08 01:24:08 +03:00
|
|
|
driver.driver_features &= ~DRIVER_MODESET;
|
|
|
|
#endif
|
|
|
|
|
2013-11-14 01:11:25 +04:00
|
|
|
if (!(driver.driver_features & DRIVER_MODESET)) {
|
2011-01-23 13:45:14 +03:00
|
|
|
driver.get_vblank_timestamp = NULL;
|
2013-11-14 01:11:25 +04:00
|
|
|
#ifndef CONFIG_DRM_I915_UMS
|
|
|
|
/* Silently fail loading to not upset userspace. */
|
2014-06-02 17:58:30 +04:00
|
|
|
DRM_DEBUG_DRIVER("KMS and UMS disabled.\n");
|
2013-11-14 01:11:25 +04:00
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
2011-01-23 13:45:14 +03:00
|
|
|
|
2010-12-14 20:16:38 +03:00
|
|
|
return drm_pci_init(&driver, &i915_pci_driver);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit i915_exit(void)
|
|
|
|
{
|
2013-11-15 20:16:33 +04:00
|
|
|
#ifndef CONFIG_DRM_I915_UMS
|
|
|
|
if (!(driver.driver_features & DRIVER_MODESET))
|
|
|
|
return; /* Never loaded a driver. */
|
|
|
|
#endif
|
|
|
|
|
2010-12-14 20:16:38 +03:00
|
|
|
drm_pci_exit(&driver, &i915_pci_driver);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
module_init(i915_init);
|
|
|
|
module_exit(i915_exit);
|
|
|
|
|
2014-08-27 14:30:20 +04:00
|
|
|
MODULE_AUTHOR("Tungsten Graphics, Inc.");
|
2014-08-27 14:30:21 +04:00
|
|
|
MODULE_AUTHOR("Intel Corporation");
|
2014-08-27 14:30:20 +04:00
|
|
|
|
2005-09-25 08:28:13 +04:00
|
|
|
MODULE_DESCRIPTION(DRIVER_DESC);
|
2005-04-17 02:20:36 +04:00
|
|
|
MODULE_LICENSE("GPL and additional rights");
|