提交 c48f67ee 编写于 作者: V Ville Syrjälä

drm/i915/fbc: Extract intel_fbc_stolen_end()

Declutter find_compression_limit() a bit by extracting
intel_fbc_stolen_end().
Signed-off-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210610183237.3920-8-ville.syrjala@linux.intel.comReviewed-by: NJosé Roberto de Souza <jose.souza@intel.com>
上级 9c8a442d
...@@ -423,13 +423,8 @@ static u64 intel_fbc_cfb_base_max(struct drm_i915_private *i915) ...@@ -423,13 +423,8 @@ static u64 intel_fbc_cfb_base_max(struct drm_i915_private *i915)
return BIT_ULL(32); return BIT_ULL(32);
} }
static int find_compression_limit(struct drm_i915_private *dev_priv, static u64 intel_fbc_stolen_end(struct drm_i915_private *dev_priv)
unsigned int size,
unsigned int fb_cpp)
{ {
struct intel_fbc *fbc = &dev_priv->fbc;
int compression_limit = 1;
int ret;
u64 end; u64 end;
/* The FBC hardware for BDW/SKL doesn't have access to the stolen /* The FBC hardware for BDW/SKL doesn't have access to the stolen
...@@ -442,7 +437,17 @@ static int find_compression_limit(struct drm_i915_private *dev_priv, ...@@ -442,7 +437,17 @@ static int find_compression_limit(struct drm_i915_private *dev_priv,
else else
end = U64_MAX; end = U64_MAX;
end = min(end, intel_fbc_cfb_base_max(dev_priv)); return min(end, intel_fbc_cfb_base_max(dev_priv));
}
static int find_compression_limit(struct drm_i915_private *dev_priv,
unsigned int size,
unsigned int fb_cpp)
{
struct intel_fbc *fbc = &dev_priv->fbc;
u64 end = intel_fbc_stolen_end(dev_priv);
int compression_limit = 1;
int ret;
/* HACK: This code depends on what we will do in *_enable_fbc. If that /* HACK: This code depends on what we will do in *_enable_fbc. If that
* code changes, this code needs to change as well. * code changes, this code needs to change as well.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册