mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 10:11:52 -04:00
drm/i915/display: convert HAS_D12_PLANE_MINIMIZATION() to struct intel_display
Convert HAS_D12_PLANE_MINIMIZATION() to struct intel_display. Do minimal drive-by conversions to struct intel_display in the callers while at it. Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/ed9402eb83ab301f3c1d60884376d715b2190fd3.1731321183.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
@@ -1687,7 +1687,7 @@ static void __intel_display_device_info_runtime_init(struct drm_i915_private *i9
|
||||
display_runtime->num_scalers[PIPE_C] = 1;
|
||||
}
|
||||
|
||||
if (DISPLAY_VER(i915) >= 13 || HAS_D12_PLANE_MINIMIZATION(i915))
|
||||
if (DISPLAY_VER(i915) >= 13 || HAS_D12_PLANE_MINIMIZATION(display))
|
||||
for_each_pipe(i915, pipe)
|
||||
display_runtime->num_sprites[pipe] = 4;
|
||||
else if (DISPLAY_VER(i915) >= 11)
|
||||
|
||||
@@ -144,7 +144,7 @@ struct intel_display_platforms {
|
||||
#define HAS_CDCLK_CRAWL(i915) (DISPLAY_INFO(i915)->has_cdclk_crawl)
|
||||
#define HAS_CDCLK_SQUASH(i915) (DISPLAY_INFO(i915)->has_cdclk_squash)
|
||||
#define HAS_CUR_FBC(i915) (!HAS_GMCH(i915) && IS_DISPLAY_VER(i915, 7, 13))
|
||||
#define HAS_D12_PLANE_MINIMIZATION(i915) (IS_ROCKETLAKE(i915) || IS_ALDERLAKE_S(i915))
|
||||
#define HAS_D12_PLANE_MINIMIZATION(__display) ((__display)->platform.rocketlake || (__display)->platform.alderlake_s)
|
||||
#define HAS_DBUF_OVERLAP_DETECTION(__i915) (DISPLAY_RUNTIME_INFO(__i915)->has_dbuf_overlap_detection)
|
||||
#define HAS_DDI(i915) (DISPLAY_INFO(i915)->has_ddi)
|
||||
#define HAS_DISPLAY(i915) (DISPLAY_RUNTIME_INFO(i915)->pipe_mask != 0)
|
||||
|
||||
@@ -843,7 +843,9 @@ static u32 gen8_de_port_aux_mask(struct drm_i915_private *dev_priv)
|
||||
|
||||
static u32 gen8_de_pipe_fault_mask(struct drm_i915_private *dev_priv)
|
||||
{
|
||||
if (DISPLAY_VER(dev_priv) >= 14)
|
||||
struct intel_display *display = &dev_priv->display;
|
||||
|
||||
if (DISPLAY_VER(display) >= 14)
|
||||
return MTL_PIPEDMC_ATS_FAULT |
|
||||
MTL_PLANE_ATS_FAULT |
|
||||
GEN12_PIPEDMC_FAULT |
|
||||
@@ -853,7 +855,7 @@ static u32 gen8_de_pipe_fault_mask(struct drm_i915_private *dev_priv)
|
||||
GEN9_PIPE_PLANE3_FAULT |
|
||||
GEN9_PIPE_PLANE2_FAULT |
|
||||
GEN9_PIPE_PLANE1_FAULT;
|
||||
if (DISPLAY_VER(dev_priv) >= 13 || HAS_D12_PLANE_MINIMIZATION(dev_priv))
|
||||
if (DISPLAY_VER(display) >= 13 || HAS_D12_PLANE_MINIMIZATION(display))
|
||||
return GEN12_PIPEDMC_FAULT |
|
||||
GEN9_PIPE_CURSOR_FAULT |
|
||||
GEN11_PIPE_PLANE5_FAULT |
|
||||
@@ -861,7 +863,7 @@ static u32 gen8_de_pipe_fault_mask(struct drm_i915_private *dev_priv)
|
||||
GEN9_PIPE_PLANE3_FAULT |
|
||||
GEN9_PIPE_PLANE2_FAULT |
|
||||
GEN9_PIPE_PLANE1_FAULT;
|
||||
else if (DISPLAY_VER(dev_priv) == 12)
|
||||
else if (DISPLAY_VER(display) == 12)
|
||||
return GEN12_PIPEDMC_FAULT |
|
||||
GEN9_PIPE_CURSOR_FAULT |
|
||||
GEN11_PIPE_PLANE7_FAULT |
|
||||
@@ -871,7 +873,7 @@ static u32 gen8_de_pipe_fault_mask(struct drm_i915_private *dev_priv)
|
||||
GEN9_PIPE_PLANE3_FAULT |
|
||||
GEN9_PIPE_PLANE2_FAULT |
|
||||
GEN9_PIPE_PLANE1_FAULT;
|
||||
else if (DISPLAY_VER(dev_priv) == 11)
|
||||
else if (DISPLAY_VER(display) == 11)
|
||||
return GEN9_PIPE_CURSOR_FAULT |
|
||||
GEN11_PIPE_PLANE7_FAULT |
|
||||
GEN11_PIPE_PLANE6_FAULT |
|
||||
@@ -880,7 +882,7 @@ static u32 gen8_de_pipe_fault_mask(struct drm_i915_private *dev_priv)
|
||||
GEN9_PIPE_PLANE3_FAULT |
|
||||
GEN9_PIPE_PLANE2_FAULT |
|
||||
GEN9_PIPE_PLANE1_FAULT;
|
||||
else if (DISPLAY_VER(dev_priv) >= 9)
|
||||
else if (DISPLAY_VER(display) >= 9)
|
||||
return GEN9_PIPE_CURSOR_FAULT |
|
||||
GEN9_PIPE_PLANE4_FAULT |
|
||||
GEN9_PIPE_PLANE3_FAULT |
|
||||
|
||||
@@ -239,7 +239,9 @@ int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
|
||||
|
||||
static u8 icl_nv12_y_plane_mask(struct drm_i915_private *i915)
|
||||
{
|
||||
if (DISPLAY_VER(i915) >= 13 || HAS_D12_PLANE_MINIMIZATION(i915))
|
||||
struct intel_display *display = &i915->display;
|
||||
|
||||
if (DISPLAY_VER(display) >= 13 || HAS_D12_PLANE_MINIMIZATION(display))
|
||||
return BIT(PLANE_4) | BIT(PLANE_5);
|
||||
else
|
||||
return BIT(PLANE_6) | BIT(PLANE_7);
|
||||
|
||||
Reference in New Issue
Block a user