From: Daniel Vetter <daniel@ffwll.ch>
To: ville.syrjala@linux.intel.com
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 03/22] drm/i915: Factor out intel_tile_width()
Date: Wed, 21 Oct 2015 12:15:42 +0200 [thread overview]
Message-ID: <20151021101542.GU13786@phenom.ffwll.local> (raw)
In-Reply-To: <1444840154-7804-4-git-send-email-ville.syrjala@linux.intel.com>
On Wed, Oct 14, 2015 at 07:28:55PM +0300, ville.syrjala@linux.intel.com wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Pull the tile width calculations from intel_fb_stride_alignment() into a
> new function intel_tile_width().
>
> Also take the opportunity to pass aroun dev_priv instead of dev to
> intel_fb_stride_alignment().
>
> v2: Reorder argumnents to be more consistent with other functions
> Change intel_fb_stride_alignment() to accept dev_priv instead of dev
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/intel_display.c | 76 +++++++++++++++++++++++-------------
> drivers/gpu/drm/i915/intel_drv.h | 4 +-
> drivers/gpu/drm/i915/intel_sprite.c | 2 +-
> 3 files changed, 51 insertions(+), 31 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> index 6add8d1..c31fe47 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -2214,6 +2214,41 @@ static bool need_vtd_wa(struct drm_device *dev)
> return false;
> }
>
> +static unsigned int intel_tile_width(const struct drm_i915_private *dev_priv,
> + uint64_t fb_modifier, unsigned int cpp)
> +{
> + switch (fb_modifier) {
> + case DRM_FORMAT_MOD_NONE:
> + return cpp;
> + case I915_FORMAT_MOD_X_TILED:
> + return IS_GEN2(dev_priv) ? 128 : 512;
> + case I915_FORMAT_MOD_Y_TILED:
> + /* No need to check for old gens and Y tiling since this is
> + * about the display engine and those will be blocked before
> + * we get here.
> + */
> + return 128;
Imo just drop the comment and change this to
return HAS_128_BYTE_Y_TILING(dev) 128 : 512;
Just to avoid wtf moments. It's less code than the comment too.
Another one: Enforcing pot alignment for gen2/3 is fairly hapzardous - we
do it accidentally by requiring that for X-tiled the underlying obj is
also X-tiled and that strides match. Comment for this would be good here.
> + case I915_FORMAT_MOD_Yf_TILED:
> + switch (cpp) {
> + case 1:
> + return 64;
> + case 2:
> + case 4:
> + return 128;
With 4 cpp we have 4x4 pixels for the 64b cacheline. So 8x8 for the 256b
block with 1:1 aspect ratio, hence 64x64 pixel tile for the full page.
> + case 8:
With 8 cpp we have 2x4 pixels for the 64b cacheline. So 8x4 for the 256b
block with 2:1 aspect ratio, hence 64x32 pixel tile for the full page.
> + case 16:
> + return 256;
With 16 cpp we have 1x4 pixels for the 64b cacheline. So 4x4 for the 256b
block with 1:1 aspect ratio, hence 32x32 pixel tile for the full page.
Otherwise looks good to me, Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
once we close the above.
Cheers, Daniel
> + default:
> + MISSING_CASE(cpp);
> + return cpp;
> + }
> + break;
> + default:
> + MISSING_CASE(fb_modifier);
> + return cpp;
> + }
> +}
> +
> unsigned int
> intel_tile_height(struct drm_device *dev, uint32_t pixel_format,
> uint64_t fb_format_modifier, unsigned int plane)
> @@ -2895,37 +2930,20 @@ static void ironlake_update_primary_plane(struct drm_crtc *crtc,
> POSTING_READ(reg);
> }
>
> -u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
> - uint32_t pixel_format)
> +u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv,
> + uint64_t fb_modifier, uint32_t pixel_format)
> {
> - u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
> -
> /*
> * The stride is either expressed as a multiple of 64 bytes
> * chunks for linear buffers or in number of tiles for tiled
> * buffers.
> */
> - switch (fb_modifier) {
> - case DRM_FORMAT_MOD_NONE:
> - return 64;
> - case I915_FORMAT_MOD_X_TILED:
> - if (INTEL_INFO(dev)->gen == 2)
> - return 128;
> - return 512;
> - case I915_FORMAT_MOD_Y_TILED:
> - /* No need to check for old gens and Y tiling since this is
> - * about the display engine and those will be blocked before
> - * we get here.
> - */
> - return 128;
> - case I915_FORMAT_MOD_Yf_TILED:
> - if (bits_per_pixel == 8)
> - return 64;
> - else
> - return 128;
> - default:
> - MISSING_CASE(fb_modifier);
> + if (fb_modifier == DRM_FORMAT_MOD_NONE) {
> return 64;
> + } else {
> + unsigned int cpp = drm_format_plane_cpp(pixel_format, 0);
> +
> + return intel_tile_width(dev_priv, fb_modifier, cpp);
> }
> }
>
> @@ -3106,7 +3124,7 @@ static void skylake_update_primary_plane(struct drm_crtc *crtc,
> plane_ctl |= skl_plane_ctl_rotation(rotation);
>
> obj = intel_fb_obj(fb);
> - stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
> + stride_div = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
> fb->pixel_format);
> surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
>
> @@ -9066,7 +9084,7 @@ skylake_get_initial_plane_config(struct intel_crtc *crtc,
> fb->width = ((val >> 0) & 0x1fff) + 1;
>
> val = I915_READ(PLANE_STRIDE(pipe, 0));
> - stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
> + stride_mult = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
> fb->pixel_format);
> fb->pitches[0] = (val & 0x3ff) * stride_mult;
>
> @@ -11137,7 +11155,7 @@ static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
> * linear buffers or in number of tiles for tiled buffers.
> */
> stride = fb->pitches[0] /
> - intel_fb_stride_alignment(dev, fb->modifier[0],
> + intel_fb_stride_alignment(dev_priv, fb->modifier[0],
> fb->pixel_format);
>
> /*
> @@ -14214,6 +14232,7 @@ static int intel_framebuffer_init(struct drm_device *dev,
> struct drm_mode_fb_cmd2 *mode_cmd,
> struct drm_i915_gem_object *obj)
> {
> + struct drm_i915_private *dev_priv = to_i915(dev);
> unsigned int aligned_height;
> int ret;
> u32 pitch_limit, stride_alignment;
> @@ -14255,7 +14274,8 @@ static int intel_framebuffer_init(struct drm_device *dev,
> return -EINVAL;
> }
>
> - stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
> + stride_alignment = intel_fb_stride_alignment(dev_priv,
> + mode_cmd->modifier[0],
> mode_cmd->pixel_format);
> if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
> DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
> diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h
> index 1152566..98a8d31 100644
> --- a/drivers/gpu/drm/i915/intel_drv.h
> +++ b/drivers/gpu/drm/i915/intel_drv.h
> @@ -1017,8 +1017,8 @@ unsigned int intel_fb_align_height(struct drm_device *dev,
> uint64_t fb_format_modifier);
> void intel_fb_obj_flush(struct drm_i915_gem_object *obj, bool retire,
> enum fb_op_origin origin);
> -u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
> - uint32_t pixel_format);
> +u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv,
> + uint64_t fb_modifier, uint32_t pixel_format);
>
> /* intel_audio.c */
> void intel_init_audio(struct drm_device *dev);
> diff --git a/drivers/gpu/drm/i915/intel_sprite.c b/drivers/gpu/drm/i915/intel_sprite.c
> index 90e27c8..3d96871 100644
> --- a/drivers/gpu/drm/i915/intel_sprite.c
> +++ b/drivers/gpu/drm/i915/intel_sprite.c
> @@ -215,7 +215,7 @@ skl_update_plane(struct drm_plane *drm_plane, struct drm_crtc *crtc,
> pixel_size, true,
> src_w != crtc_w || src_h != crtc_h);
>
> - stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
> + stride_div = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
> fb->pixel_format);
>
> scaler_id = to_intel_plane_state(drm_plane->state)->scaler_id;
> --
> 2.4.9
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-10-21 10:15 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-14 16:28 [PATCH 00/22] drm/i915: Handle fb->offsets[] and rewrite fb rotation handling to be more generic ville.syrjala
2015-10-14 16:28 ` [PATCH 01/22] drm: Add drm_format_plane_width() and drm_format_plane_height() ville.syrjala
2015-10-21 9:53 ` Daniel Vetter
2015-10-14 16:28 ` [PATCH 02/22] drm/i915: Pass modifier instead of tiling_mode to gen4_compute_page_offset() ville.syrjala
2015-10-21 9:54 ` Daniel Vetter
2015-10-14 16:28 ` [PATCH 03/22] drm/i915: Factor out intel_tile_width() ville.syrjala
2015-10-21 10:15 ` Daniel Vetter [this message]
2015-10-21 12:09 ` Ville Syrjälä
2015-10-21 12:16 ` Daniel Vetter
2015-10-14 16:28 ` [PATCH 04/22] drm/i915: Redo intel_tile_height() as intel_tile_size() / intel_tile_width() ville.syrjala
2015-10-21 10:21 ` Daniel Vetter
2015-10-14 16:28 ` [PATCH 05/22] drm/i915: change intel_fill_fb_ggtt_view() to use the real tile size ville.syrjala
2015-10-21 10:22 ` Daniel Vetter
2015-10-14 16:28 ` [PATCH 06/22] drm/i915: Use intel_tile_{size, width, height}() in intel_gen4_compute_page_offset() ville.syrjala
2015-10-21 10:24 ` Daniel Vetter
2015-10-14 16:28 ` [PATCH 07/22] drm/i915: s/intel_gen4_compute_page_offset/intel_compute_page_offset/ ville.syrjala
2015-10-21 10:45 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 08/22] drm/i915: Pass 90/270 vs. 0/180 rotation info for intel_gen4_compute_page_offset() ville.syrjala
2015-10-21 10:53 ` Daniel Vetter
2015-10-21 11:36 ` Ville Syrjälä
2015-10-21 12:11 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 09/22] drm/i915: Refactor intel_surf_alignment() ville.syrjala
2015-10-21 10:54 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 10/22] drm/i915: Support for extra alignment for tiled surfaces ville.syrjala
2015-10-21 11:22 ` Daniel Vetter
2015-10-21 11:32 ` Daniel Vetter
2015-10-21 11:39 ` Ville Syrjälä
2015-10-14 16:29 ` [PATCH 11/22] drm/i915: Don't pass plane+plane_state to intel_pin_and_fence_fb_obj() ville.syrjala
2015-10-15 9:08 ` Chris Wilson
2015-10-15 9:36 ` Ville Syrjälä
2015-10-15 10:05 ` Daniel Vetter
2015-10-15 10:47 ` [PATCH] drm/i915: Split out aliasing-ppgtt from ggtt_bind_vma() Chris Wilson
2015-10-15 11:10 ` [PATCH 11/22] drm/i915: Don't pass plane+plane_state to intel_pin_and_fence_fb_obj() Tvrtko Ursulin
2015-10-15 11:17 ` Ville Syrjälä
2015-10-15 11:30 ` Tvrtko Ursulin
2015-10-15 12:11 ` Ville Syrjälä
2015-10-21 11:28 ` Daniel Vetter
2015-10-21 12:17 ` Tvrtko Ursulin
2015-10-21 13:09 ` Ville Syrjälä
2015-10-21 13:22 ` Tvrtko Ursulin
2015-10-21 14:22 ` Ville Syrjälä
2015-10-21 15:20 ` Daniel Vetter
2015-10-21 15:42 ` Ville Syrjälä
2015-10-14 16:29 ` [PATCH 12/22] drm/i915: Set i915_ggtt_view_normal type explicitly ville.syrjala
2015-10-15 11:15 ` Tvrtko Ursulin
2015-10-15 12:01 ` Daniel Vetter
2015-10-21 11:28 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 13/22] drm/i915: Move the partial and rotated view data into the same union ville.syrjala
2015-10-21 11:30 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 14/22] drm/i915: Don't treat differently sized rotated views as equal ville.syrjala
2015-10-15 11:18 ` Tvrtko Ursulin
2015-10-15 12:02 ` Daniel Vetter
2015-10-15 12:06 ` Ville Syrjälä
2015-10-15 12:24 ` Daniel Vetter
2015-10-21 13:06 ` Ville Syrjälä
2015-10-21 11:36 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 15/22] drm/i915: Pass the dma_addr_t array as const to rotate_pages() ville.syrjala
2015-10-21 11:36 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 16/22] drm/i915: Pass stride " ville.syrjala
2015-10-14 16:29 ` [PATCH 17/22] drm/i915: Pass rotation_info to intel_rotate_fb_obj_pages() ville.syrjala
2015-10-14 16:29 ` [PATCH 18/22] drm/i915: Make sure fb offset is (macro)pixel aligned ville.syrjala
2015-10-14 16:43 ` Daniel Vetter
2015-10-21 11:41 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 19/22] drm/i915: Don't leak framebuffer_references if drm_framebuffer_init() fails ville.syrjala
2015-10-21 11:42 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 20/22] drm/i915: Pass drm_frambuffer to intel_compute_page_offset() ville.syrjala
2015-10-21 11:43 ` Daniel Vetter
2015-10-14 16:29 ` [PATCH 21/22] drm/i915: Rewrite fb rotation GTT handling ville.syrjala
2015-10-15 17:59 ` [PATCH v2 " ville.syrjala
2015-10-21 12:01 ` Daniel Vetter
2015-10-21 14:19 ` Ville Syrjälä
2015-10-14 16:29 ` [PATCH 22/22] drm/i915: Don't pass pitch to intel_compute_page_offset() ville.syrjala
2015-10-21 12:06 ` Daniel Vetter
2015-10-14 16:59 ` [PATCH 00/22] drm/i915: Handle fb->offsets[] and rewrite fb rotation handling to be more generic Daniel Vetter
2015-10-21 12:09 ` Daniel Vetter
2015-10-21 15:15 ` Daniel Vetter
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=20151021101542.GU13786@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
--cc=ville.syrjala@linux.intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox