From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: dri-devel@lists.freedesktop.org,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Jyri Sarha <jsarha@ti.com>
Subject: Re: [PATCH] drm/omap: fix tiled buffer stride calculations
Date: Thu, 18 May 2017 14:32:22 +0300 [thread overview]
Message-ID: <20170518113222.GZ12629@intel.com> (raw)
In-Reply-To: <7c0b4d6f-c5f8-718a-36c3-7aea832cccf2@ti.com>
On Thu, May 18, 2017 at 02:14:35PM +0300, Tomi Valkeinen wrote:
> On 18/05/17 13:59, Laurent Pinchart wrote:
> > Hi Tomi,
> >
> > Thank you for the patch.
> >
> > On Thursday 18 May 2017 13:28:26 Tomi Valkeinen wrote:
> >> omap_gem uses page alignment for buffer stride. The related calculations
> >> are a bit off, though, as byte stride of 4096 gets aligned to 8192,
> >> instead of 4096. This patch fixes those calculations.
> >>
> >> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
> >> ---
> >> drivers/gpu/drm/omapdrm/omap_gem.c | 4 ++--
> >> 1 file changed, 2 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/gpu/drm/omapdrm/omap_gem.c
> >> b/drivers/gpu/drm/omapdrm/omap_gem.c index 13abf221d153..4c41000ff4c4
> >> 100644
> >> --- a/drivers/gpu/drm/omapdrm/omap_gem.c
> >> +++ b/drivers/gpu/drm/omapdrm/omap_gem.c
> >> @@ -182,7 +182,7 @@ static void evict_entry(struct drm_gem_object *obj,
> >> size_t size = PAGE_SIZE * n;
> >> loff_t off = mmap_offset(obj) +
> >> (entry->obj_pgoff << PAGE_SHIFT);
> >> - const int m = 1 + ((omap_obj->width << fmt) / PAGE_SIZE);
> >> + const int m = 1 + (((omap_obj->width - 1) << fmt) / PAGE_SIZE);
> >
> > How about
> >
> > int m = round_up(omap_obj->width << fmt, PAGE_SIZE);
> >
> > instead of open-coding it ? I find that a bit easier to understand.
>
> That should be:
>
> round_up(omap_obj->width << fmt, PAGE_SIZE) / PAGE_SIZE;
Or a bit more optimally just DIV_ROUND_UP()
--
Ville Syrjälä
Intel OTC
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
prev parent reply other threads:[~2017-05-18 11:32 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-18 10:28 [PATCH] drm/omap: fix tiled buffer stride calculations Tomi Valkeinen
2017-05-18 10:59 ` Laurent Pinchart
2017-05-18 11:14 ` Tomi Valkeinen
2017-05-18 11:25 ` Laurent Pinchart
2017-05-18 11:34 ` Tomi Valkeinen
2017-05-18 12:32 ` Laurent Pinchart
2017-05-18 11:32 ` Ville Syrjälä [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170518113222.GZ12629@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jsarha@ti.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=tomi.valkeinen@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.