@@ -7712,6 +7712,17 @@ static const struct drm_framebuffer_funcs intel_fb_funcs = {
.create_handle = intel_user_framebuffer_create_handle,
};
+static unsigned int intel_max_fb_stride(const struct drm_device *dev)
+{
+ /* FIXME: BSpec for pre-Gen5 is a bit unclear on stride limits */
+ if (INTEL_INFO(dev)->gen <= 3)
+ return 8192;
+ else if (INTEL_INFO(dev)->gen <= 4)
+ return 16384;
+ else
+ return 32768;
+}
+
int intel_framebuffer_init(struct drm_device *dev,
struct intel_framebuffer *intel_fb,
struct drm_mode_fb_cmd2 *mode_cmd,
@@ -7725,6 +7736,13 @@ int intel_framebuffer_init(struct drm_device *dev,
if (mode_cmd->pitches[0] & 63)
return -EINVAL;
+ if (mode_cmd->pitches[0] > intel_max_fb_stride(dev))
+ return -EINVAL;
+
+ if (obj->tiling_mode != I915_TILING_NONE &&
+ mode_cmd->pitches[0] != obj->stride)
+ return -EINVAL;
+
/* Reject formats not supported by any plane early. */
switch (mode_cmd->pixel_format) {
case DRM_FORMAT_C8: