If stride of the dumb buffer requested is greater than the primary plane's max stride, then we align the stride to the page size. But the page size was hard coded for 4096. With the lmem addition, lets align the stride to the page size of the memory region that will be used for dumb buffer. Signed-off-by: Ramalingam C <ramalingam.c@xxxxxxxxx> cc: Chris Wilson <chris@xxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/i915/i915_gem.c | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index a712e60b016a..0f01396ca24e 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c @@ -239,8 +239,9 @@ i915_gem_dumb_create(struct drm_file *file, struct drm_device *dev, struct drm_mode_create_dumb *args) { - enum intel_memory_type mem_type; int cpp = DIV_ROUND_UP(args->bpp, 8); + enum intel_memory_type mem_type; + struct intel_memory_region *mr; u32 format; switch (cpp) { @@ -260,24 +261,21 @@ i915_gem_dumb_create(struct drm_file *file, /* have to work out size/pitch and return them */ args->pitch = ALIGN(args->width * cpp, 64); + mem_type = INTEL_MEMORY_SYSTEM; + if (HAS_LMEM(to_i915(dev))) + mem_type = INTEL_MEMORY_LOCAL; + mr = intel_memory_region_by_type(to_i915(dev), mem_type); + /* align stride to page size so that we can remap */ if (args->pitch > intel_plane_fb_max_stride(to_i915(dev), format, DRM_FORMAT_MOD_LINEAR)) - args->pitch = ALIGN(args->pitch, 4096); + args->pitch = ALIGN(args->pitch, mr->min_page_size); if (args->pitch < args->width) return -EINVAL; args->size = mul_u32_u32(args->pitch, args->height); - - mem_type = INTEL_MEMORY_SYSTEM; - if (HAS_LMEM(to_i915(dev))) - mem_type = INTEL_MEMORY_LOCAL; - - return i915_gem_create(file, - intel_memory_region_by_type(to_i915(dev), - mem_type), - &args->size, &args->handle); + return i915_gem_create(file, mr, &args->size, &args->handle); } /** -- 2.20.1 _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx