diff options
| author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-05 08:04:07 +0200 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-05 08:04:07 +0200 | 
| commit | fbc1ec2efe665c07c8c71f9f19edb018f7984107 (patch) | |
| tree | e7df9dac12c640a83ce8859300e061f1f8913ecd /drivers/gpu/drm/i915/i915_reg.h | |
| parent | 02baff325462cc7e81241b21959c5e62e7ca575e (diff) | |
| parent | c6935931c1894ff857616ff8549b61236a19148f (diff) | |
Merge 4.8-rc5 into char-misc-next
We want the fixes in here for merging and testing.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_reg.h')
| -rw-r--r-- | drivers/gpu/drm/i915/i915_reg.h | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index ce14fe09d962..bf2cad3f9e1f 100644 --- a/drivers/gpu/drm/i915/i915_reg.h +++ b/drivers/gpu/drm/i915/i915_reg.h @@ -1536,6 +1536,7 @@ enum skl_disp_power_wells {  #define BALANCE_LEG_MASK(port)		(7<<(8+3*(port)))  /* Balance leg disable bits */  #define BALANCE_LEG_DISABLE_SHIFT	23 +#define BALANCE_LEG_DISABLE(port)	(1 << (23 + (port)))  /*   * Fence registers @@ -7144,6 +7145,15 @@ enum {  #define GEN6_PCODE_MAILBOX			_MMIO(0x138124)  #define   GEN6_PCODE_READY			(1<<31) +#define   GEN6_PCODE_ERROR_MASK			0xFF +#define     GEN6_PCODE_SUCCESS			0x0 +#define     GEN6_PCODE_ILLEGAL_CMD		0x1 +#define     GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE 0x2 +#define     GEN6_PCODE_TIMEOUT			0x3 +#define     GEN6_PCODE_UNIMPLEMENTED_CMD	0xFF +#define     GEN7_PCODE_TIMEOUT			0x2 +#define     GEN7_PCODE_ILLEGAL_DATA		0x3 +#define     GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE 0x10  #define	  GEN6_PCODE_WRITE_RC6VIDS		0x4  #define	  GEN6_PCODE_READ_RC6VIDS		0x5  #define     GEN6_ENCODE_RC6_VID(mv)		(((mv) - 245) / 5) @@ -7165,6 +7175,10 @@ enum {  #define   HSW_PCODE_DE_WRITE_FREQ_REQ		0x17  #define   DISPLAY_IPS_CONTROL			0x19  #define	  HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL	0x1A +#define   GEN9_PCODE_SAGV_CONTROL		0x21 +#define     GEN9_SAGV_DISABLE			0x0 +#define     GEN9_SAGV_IS_DISABLED		0x1 +#define     GEN9_SAGV_ENABLE			0x3  #define GEN6_PCODE_DATA				_MMIO(0x138128)  #define   GEN6_PCODE_FREQ_IA_RATIO_SHIFT	8  #define   GEN6_PCODE_FREQ_RING_RATIO_SHIFT	16 | 
