mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 09:49:58 -04:00
drm/i915: Split pre-skl platforms out from intel_surf_alignment()
Extract the necessary chunks from intel_surf_alignment() into per-platform variants for all pre-skl primary/sprite planes. Reviewed-by: Imre Deak <imre.deak@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240612204712.31404-7-ville.syrjala@linux.intel.com
This commit is contained in:
@@ -764,6 +764,66 @@ i8xx_plane_max_stride(struct intel_plane *plane,
|
||||
return 8 * 1024;
|
||||
}
|
||||
|
||||
static unsigned int vlv_primary_min_alignment(struct intel_plane *plane,
|
||||
const struct drm_framebuffer *fb,
|
||||
int color_plane)
|
||||
{
|
||||
struct drm_i915_private *i915 = to_i915(plane->base.dev);
|
||||
|
||||
switch (fb->modifier) {
|
||||
case I915_FORMAT_MOD_X_TILED:
|
||||
if (HAS_ASYNC_FLIPS(i915))
|
||||
return 256 * 1024;
|
||||
return 4 * 1024;
|
||||
case DRM_FORMAT_MOD_LINEAR:
|
||||
return 128 * 1024;
|
||||
default:
|
||||
MISSING_CASE(fb->modifier);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static unsigned int g4x_primary_min_alignment(struct intel_plane *plane,
|
||||
const struct drm_framebuffer *fb,
|
||||
int color_plane)
|
||||
{
|
||||
struct drm_i915_private *i915 = to_i915(plane->base.dev);
|
||||
|
||||
switch (fb->modifier) {
|
||||
case I915_FORMAT_MOD_X_TILED:
|
||||
if (HAS_ASYNC_FLIPS(i915))
|
||||
return 256 * 1024;
|
||||
return 4 * 1024;
|
||||
case DRM_FORMAT_MOD_LINEAR:
|
||||
return 4 * 1024;
|
||||
default:
|
||||
MISSING_CASE(fb->modifier);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static unsigned int i965_plane_min_alignment(struct intel_plane *plane,
|
||||
const struct drm_framebuffer *fb,
|
||||
int color_plane)
|
||||
{
|
||||
switch (fb->modifier) {
|
||||
case I915_FORMAT_MOD_X_TILED:
|
||||
return 4 * 1024;
|
||||
case DRM_FORMAT_MOD_LINEAR:
|
||||
return 128 * 1024;
|
||||
default:
|
||||
MISSING_CASE(fb->modifier);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static unsigned int i9xx_plane_min_alignment(struct intel_plane *plane,
|
||||
const struct drm_framebuffer *fb,
|
||||
int color_plane)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct drm_plane_funcs i965_plane_funcs = {
|
||||
.update_plane = drm_atomic_helper_update_plane,
|
||||
.disable_plane = drm_atomic_helper_disable_plane,
|
||||
@@ -869,7 +929,14 @@ intel_primary_plane_create(struct drm_i915_private *dev_priv, enum pipe pipe)
|
||||
plane->max_stride = ilk_primary_max_stride;
|
||||
}
|
||||
|
||||
plane->min_alignment = intel_surf_alignment;
|
||||
if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
|
||||
plane->min_alignment = vlv_primary_min_alignment;
|
||||
else if (DISPLAY_VER(dev_priv) >= 5 || IS_G4X(dev_priv))
|
||||
plane->min_alignment = g4x_primary_min_alignment;
|
||||
else if (DISPLAY_VER(dev_priv) == 4)
|
||||
plane->min_alignment = i965_plane_min_alignment;
|
||||
else
|
||||
plane->min_alignment = i9xx_plane_min_alignment;
|
||||
|
||||
if (IS_I830(dev_priv) || IS_I845G(dev_priv)) {
|
||||
plane->update_arm = i830_plane_update_arm;
|
||||
|
||||
@@ -777,19 +777,6 @@ bool intel_fb_uses_dpt(const struct drm_framebuffer *fb)
|
||||
intel_fb_modifier_uses_dpt(to_i915(fb->dev), fb->modifier);
|
||||
}
|
||||
|
||||
static unsigned int intel_linear_alignment(const struct drm_i915_private *dev_priv)
|
||||
{
|
||||
if (DISPLAY_VER(dev_priv) >= 9)
|
||||
return 256 * 1024;
|
||||
else if (IS_I965G(dev_priv) || IS_I965GM(dev_priv) ||
|
||||
IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
|
||||
return 128 * 1024;
|
||||
else if (DISPLAY_VER(dev_priv) >= 4)
|
||||
return 4 * 1024;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned int intel_surf_alignment(struct intel_plane *plane,
|
||||
const struct drm_framebuffer *fb,
|
||||
int color_plane)
|
||||
@@ -825,7 +812,7 @@ unsigned int intel_surf_alignment(struct intel_plane *plane,
|
||||
*/
|
||||
if (DISPLAY_VER(dev_priv) >= 12) {
|
||||
if (fb->modifier == DRM_FORMAT_MOD_LINEAR)
|
||||
return intel_linear_alignment(dev_priv);
|
||||
return 256 * 1024;
|
||||
|
||||
return intel_tile_row_size(fb, color_plane);
|
||||
}
|
||||
@@ -837,7 +824,7 @@ unsigned int intel_surf_alignment(struct intel_plane *plane,
|
||||
|
||||
switch (fb->modifier) {
|
||||
case DRM_FORMAT_MOD_LINEAR:
|
||||
return intel_linear_alignment(dev_priv);
|
||||
return 256 * 1024;
|
||||
case I915_FORMAT_MOD_X_TILED:
|
||||
if (HAS_ASYNC_FLIPS(dev_priv))
|
||||
return 256 * 1024;
|
||||
|
||||
@@ -253,6 +253,21 @@ int vlv_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
|
||||
return DIV_ROUND_UP(pixel_rate * num, den);
|
||||
}
|
||||
|
||||
static unsigned int vlv_sprite_min_alignment(struct intel_plane *plane,
|
||||
const struct drm_framebuffer *fb,
|
||||
int color_plane)
|
||||
{
|
||||
switch (fb->modifier) {
|
||||
case I915_FORMAT_MOD_X_TILED:
|
||||
return 4 * 1024;
|
||||
case DRM_FORMAT_MOD_LINEAR:
|
||||
return 128 * 1024;
|
||||
default:
|
||||
MISSING_CASE(fb->modifier);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static u32 vlv_sprite_ctl_crtc(const struct intel_crtc_state *crtc_state)
|
||||
{
|
||||
u32 sprctl = 0;
|
||||
@@ -964,6 +979,13 @@ hsw_sprite_max_stride(struct intel_plane *plane,
|
||||
return min(8192 * cpp, 16 * 1024);
|
||||
}
|
||||
|
||||
static unsigned int g4x_sprite_min_alignment(struct intel_plane *plane,
|
||||
const struct drm_framebuffer *fb,
|
||||
int color_plane)
|
||||
{
|
||||
return 4 * 1024;
|
||||
}
|
||||
|
||||
static u32 g4x_sprite_ctl_crtc(const struct intel_crtc_state *crtc_state)
|
||||
{
|
||||
u32 dvscntr = 0;
|
||||
@@ -1570,6 +1592,7 @@ intel_sprite_plane_create(struct drm_i915_private *dev_priv,
|
||||
plane->get_hw_state = vlv_sprite_get_hw_state;
|
||||
plane->check_plane = vlv_sprite_check;
|
||||
plane->max_stride = i965_plane_max_stride;
|
||||
plane->min_alignment = vlv_sprite_min_alignment;
|
||||
plane->min_cdclk = vlv_plane_min_cdclk;
|
||||
|
||||
if (IS_CHERRYVIEW(dev_priv) && pipe == PIPE_B) {
|
||||
@@ -1596,6 +1619,8 @@ intel_sprite_plane_create(struct drm_i915_private *dev_priv,
|
||||
plane->min_cdclk = ivb_sprite_min_cdclk;
|
||||
}
|
||||
|
||||
plane->min_alignment = g4x_sprite_min_alignment;
|
||||
|
||||
formats = snb_sprite_formats;
|
||||
num_formats = ARRAY_SIZE(snb_sprite_formats);
|
||||
|
||||
@@ -1607,6 +1632,7 @@ intel_sprite_plane_create(struct drm_i915_private *dev_priv,
|
||||
plane->get_hw_state = g4x_sprite_get_hw_state;
|
||||
plane->check_plane = g4x_sprite_check;
|
||||
plane->max_stride = g4x_sprite_max_stride;
|
||||
plane->min_alignment = g4x_sprite_min_alignment;
|
||||
plane->min_cdclk = g4x_sprite_min_cdclk;
|
||||
|
||||
if (IS_SANDYBRIDGE(dev_priv)) {
|
||||
@@ -1622,8 +1648,6 @@ intel_sprite_plane_create(struct drm_i915_private *dev_priv,
|
||||
}
|
||||
}
|
||||
|
||||
plane->min_alignment = intel_surf_alignment;
|
||||
|
||||
if (IS_CHERRYVIEW(dev_priv) && pipe == PIPE_B) {
|
||||
supported_rotations =
|
||||
DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_180 |
|
||||
|
||||
Reference in New Issue
Block a user