mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-30 14:34:51 +08:00
drm/i915: Add has_master_unit_irq flag
Add flag to differentiate platforms with and without the master IRQ control bit. Signed-off-by: Stuart Summers <stuart.summers@intel.com> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200713182321.12390-1-lucas.demarchi@intel.com
This commit is contained in:
parent
a133c6988f
commit
2ffcfd8def
@ -1599,6 +1599,8 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
|
||||
#define HAS_LOGICAL_RING_PREEMPTION(dev_priv) \
|
||||
(INTEL_INFO(dev_priv)->has_logical_ring_preemption)
|
||||
|
||||
#define HAS_MASTER_UNIT_IRQ(dev_priv) (INTEL_INFO(dev_priv)->has_master_unit_irq)
|
||||
|
||||
#define HAS_EXECLISTS(dev_priv) HAS_LOGICAL_RING_CONTEXTS(dev_priv)
|
||||
|
||||
#define INTEL_PPGTT(dev_priv) (INTEL_INFO(dev_priv)->ppgtt_type)
|
||||
|
@ -122,6 +122,7 @@ enum intel_ppgtt_type {
|
||||
func(has_logical_ring_contexts); \
|
||||
func(has_logical_ring_elsq); \
|
||||
func(has_logical_ring_preemption); \
|
||||
func(has_master_unit_irq); \
|
||||
func(has_pooled_eu); \
|
||||
func(has_rc6); \
|
||||
func(has_rc6p); \
|
||||
|
Loading…
Reference in New Issue
Block a user