drm/i915/chv: Add PIPESTAT register bits for Cherryview
FIXME: We probably want to sprinkle _CHV suffixes over these. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Rafael Barbalho <rafael.barbalho@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
3f1d896c61
commit
8cc96e7c73
|
@ -3377,6 +3377,7 @@ enum punit_power_well {
|
|||
#define SPRITE1_FLIP_DONE_INT_EN_VLV (1UL<<30)
|
||||
#define PIPE_CRC_ERROR_ENABLE (1UL<<29)
|
||||
#define PIPE_CRC_DONE_ENABLE (1UL<<28)
|
||||
#define PERF_COUNTER2_INTERRUPT_EN (1UL<<27)
|
||||
#define PIPE_GMBUS_EVENT_ENABLE (1UL<<27)
|
||||
#define PLANE_FLIP_DONE_INT_EN_VLV (1UL<<26)
|
||||
#define PIPE_HOTPLUG_INTERRUPT_ENABLE (1UL<<26)
|
||||
|
@ -3388,8 +3389,10 @@ enum punit_power_well {
|
|||
#define PIPE_ODD_FIELD_INTERRUPT_ENABLE (1UL<<21)
|
||||
#define PIPE_EVEN_FIELD_INTERRUPT_ENABLE (1UL<<20)
|
||||
#define PIPE_B_PSR_INTERRUPT_ENABLE_VLV (1UL<<19)
|
||||
#define PERF_COUNTER_INTERRUPT_EN (1UL<<19)
|
||||
#define PIPE_HOTPLUG_TV_INTERRUPT_ENABLE (1UL<<18) /* pre-965 */
|
||||
#define PIPE_START_VBLANK_INTERRUPT_ENABLE (1UL<<18) /* 965 or later */
|
||||
#define PIPE_FRAMESTART_INTERRUPT_ENABLE (1UL<<17)
|
||||
#define PIPE_VBLANK_INTERRUPT_ENABLE (1UL<<17)
|
||||
#define PIPEA_HBLANK_INT_EN_VLV (1UL<<16)
|
||||
#define PIPE_OVERLAY_UPDATED_ENABLE (1UL<<16)
|
||||
|
@ -3397,6 +3400,7 @@ enum punit_power_well {
|
|||
#define SPRITE0_FLIP_DONE_INT_STATUS_VLV (1UL<<14)
|
||||
#define PIPE_CRC_ERROR_INTERRUPT_STATUS (1UL<<13)
|
||||
#define PIPE_CRC_DONE_INTERRUPT_STATUS (1UL<<12)
|
||||
#define PERF_COUNTER2_INTERRUPT_STATUS (1UL<<11)
|
||||
#define PIPE_GMBUS_INTERRUPT_STATUS (1UL<<11)
|
||||
#define PLANE_FLIP_DONE_INT_STATUS_VLV (1UL<<10)
|
||||
#define PIPE_HOTPLUG_INTERRUPT_STATUS (1UL<<10)
|
||||
|
@ -3405,12 +3409,16 @@ enum punit_power_well {
|
|||
#define PIPE_DPST_EVENT_STATUS (1UL<<7)
|
||||
#define PIPE_LEGACY_BLC_EVENT_STATUS (1UL<<6)
|
||||
#define PIPE_A_PSR_STATUS_VLV (1UL<<6)
|
||||
#define PIPE_LEGACY_BLC_EVENT_STATUS (1UL<<6)
|
||||
#define PIPE_ODD_FIELD_INTERRUPT_STATUS (1UL<<5)
|
||||
#define PIPE_EVEN_FIELD_INTERRUPT_STATUS (1UL<<4)
|
||||
#define PIPE_B_PSR_STATUS_VLV (1UL<<3)
|
||||
#define PERF_COUNTER_INTERRUPT_STATUS (1UL<<3)
|
||||
#define PIPE_HOTPLUG_TV_INTERRUPT_STATUS (1UL<<2) /* pre-965 */
|
||||
#define PIPE_START_VBLANK_INTERRUPT_STATUS (1UL<<2) /* 965 or later */
|
||||
#define PIPE_FRAMESTART_INTERRUPT_STATUS (1UL<<1)
|
||||
#define PIPE_VBLANK_INTERRUPT_STATUS (1UL<<1)
|
||||
#define PIPE_HBLANK_INT_STATUS (1UL<<0)
|
||||
#define PIPE_OVERLAY_UPDATED_STATUS (1UL<<0)
|
||||
|
||||
#define PIPESTAT_INT_ENABLE_MASK 0x7fff0000
|
||||
|
|
Loading…
Reference in New Issue