|
@@ -103,30 +103,68 @@ static unsigned long i915_stolen_to_physical(struct drm_device *dev)
|
|
|
return base;
|
|
|
}
|
|
|
|
|
|
-static int i915_setup_compression(struct drm_device *dev, int size)
|
|
|
+static int find_compression_threshold(struct drm_device *dev,
|
|
|
+ struct drm_mm_node *node,
|
|
|
+ int size,
|
|
|
+ int fb_cpp)
|
|
|
{
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
- struct drm_mm_node *compressed_fb, *uninitialized_var(compressed_llb);
|
|
|
+ int compression_threshold = 1;
|
|
|
int ret;
|
|
|
|
|
|
- compressed_fb = kzalloc(sizeof(*compressed_fb), GFP_KERNEL);
|
|
|
- if (!compressed_fb)
|
|
|
- goto err_llb;
|
|
|
+ /* HACK: This code depends on what we will do in *_enable_fbc. If that
|
|
|
+ * code changes, this code needs to change as well.
|
|
|
+ *
|
|
|
+ * The enable_fbc code will attempt to use one of our 2 compression
|
|
|
+ * thresholds, therefore, in that case, we only have 1 resort.
|
|
|
+ */
|
|
|
|
|
|
- /* Try to over-allocate to reduce reallocations and fragmentation */
|
|
|
- ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_fb,
|
|
|
+ /* Try to over-allocate to reduce reallocations and fragmentation. */
|
|
|
+ ret = drm_mm_insert_node(&dev_priv->mm.stolen, node,
|
|
|
size <<= 1, 4096, DRM_MM_SEARCH_DEFAULT);
|
|
|
- if (ret)
|
|
|
- ret = drm_mm_insert_node(&dev_priv->mm.stolen, compressed_fb,
|
|
|
- size >>= 1, 4096,
|
|
|
- DRM_MM_SEARCH_DEFAULT);
|
|
|
- if (ret)
|
|
|
+ if (ret == 0)
|
|
|
+ return compression_threshold;
|
|
|
+
|
|
|
+again:
|
|
|
+ /* HW's ability to limit the CFB is 1:4 */
|
|
|
+ if (compression_threshold > 4 ||
|
|
|
+ (fb_cpp == 2 && compression_threshold == 2))
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ ret = drm_mm_insert_node(&dev_priv->mm.stolen, node,
|
|
|
+ size >>= 1, 4096,
|
|
|
+ DRM_MM_SEARCH_DEFAULT);
|
|
|
+ if (ret && INTEL_INFO(dev)->gen <= 4) {
|
|
|
+ return 0;
|
|
|
+ } else if (ret) {
|
|
|
+ compression_threshold <<= 1;
|
|
|
+ goto again;
|
|
|
+ } else {
|
|
|
+ return compression_threshold;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static int i915_setup_compression(struct drm_device *dev, int size, int fb_cpp)
|
|
|
+{
|
|
|
+ struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
+ struct drm_mm_node *uninitialized_var(compressed_llb);
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ ret = find_compression_threshold(dev, &dev_priv->fbc.compressed_fb,
|
|
|
+ size, fb_cpp);
|
|
|
+ if (!ret)
|
|
|
goto err_llb;
|
|
|
+ else if (ret > 1) {
|
|
|
+ DRM_INFO("Reducing the compressed framebuffer size. This may lead to less power savings than a non-reduced-size. Try to increase stolen memory size if available in BIOS.\n");
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ dev_priv->fbc.threshold = ret;
|
|
|
|
|
|
if (HAS_PCH_SPLIT(dev))
|
|
|
- I915_WRITE(ILK_DPFC_CB_BASE, compressed_fb->start);
|
|
|
+ I915_WRITE(ILK_DPFC_CB_BASE, dev_priv->fbc.compressed_fb.start);
|
|
|
else if (IS_GM45(dev)) {
|
|
|
- I915_WRITE(DPFC_CB_BASE, compressed_fb->start);
|
|
|
+ I915_WRITE(DPFC_CB_BASE, dev_priv->fbc.compressed_fb.start);
|
|
|
} else {
|
|
|
compressed_llb = kzalloc(sizeof(*compressed_llb), GFP_KERNEL);
|
|
|
if (!compressed_llb)
|
|
@@ -140,13 +178,12 @@ static int i915_setup_compression(struct drm_device *dev, int size)
|
|
|
dev_priv->fbc.compressed_llb = compressed_llb;
|
|
|
|
|
|
I915_WRITE(FBC_CFB_BASE,
|
|
|
- dev_priv->mm.stolen_base + compressed_fb->start);
|
|
|
+ dev_priv->mm.stolen_base + dev_priv->fbc.compressed_fb.start);
|
|
|
I915_WRITE(FBC_LL_BASE,
|
|
|
dev_priv->mm.stolen_base + compressed_llb->start);
|
|
|
}
|
|
|
|
|
|
- dev_priv->fbc.compressed_fb = compressed_fb;
|
|
|
- dev_priv->fbc.size = size;
|
|
|
+ dev_priv->fbc.size = size / dev_priv->fbc.threshold;
|
|
|
|
|
|
DRM_DEBUG_KMS("reserved %d bytes of contiguous stolen space for FBC\n",
|
|
|
size);
|
|
@@ -155,14 +192,13 @@ static int i915_setup_compression(struct drm_device *dev, int size)
|
|
|
|
|
|
err_fb:
|
|
|
kfree(compressed_llb);
|
|
|
- drm_mm_remove_node(compressed_fb);
|
|
|
+ drm_mm_remove_node(&dev_priv->fbc.compressed_fb);
|
|
|
err_llb:
|
|
|
- kfree(compressed_fb);
|
|
|
pr_info_once("drm: not enough stolen space for compressed buffer (need %d more bytes), disabling. Hint: you may be able to increase stolen memory size in the BIOS to avoid this.\n", size);
|
|
|
return -ENOSPC;
|
|
|
}
|
|
|
|
|
|
-int i915_gem_stolen_setup_compression(struct drm_device *dev, int size)
|
|
|
+int i915_gem_stolen_setup_compression(struct drm_device *dev, int size, int fb_cpp)
|
|
|
{
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
|
@@ -175,7 +211,7 @@ int i915_gem_stolen_setup_compression(struct drm_device *dev, int size)
|
|
|
/* Release any current block */
|
|
|
i915_gem_stolen_cleanup_compression(dev);
|
|
|
|
|
|
- return i915_setup_compression(dev, size);
|
|
|
+ return i915_setup_compression(dev, size, fb_cpp);
|
|
|
}
|
|
|
|
|
|
void i915_gem_stolen_cleanup_compression(struct drm_device *dev)
|
|
@@ -185,10 +221,7 @@ void i915_gem_stolen_cleanup_compression(struct drm_device *dev)
|
|
|
if (dev_priv->fbc.size == 0)
|
|
|
return;
|
|
|
|
|
|
- if (dev_priv->fbc.compressed_fb) {
|
|
|
- drm_mm_remove_node(dev_priv->fbc.compressed_fb);
|
|
|
- kfree(dev_priv->fbc.compressed_fb);
|
|
|
- }
|
|
|
+ drm_mm_remove_node(&dev_priv->fbc.compressed_fb);
|
|
|
|
|
|
if (dev_priv->fbc.compressed_llb) {
|
|
|
drm_mm_remove_node(dev_priv->fbc.compressed_llb);
|