Message ID | 1452772968-24772-3-git-send-email-shobhit.kumar@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, Jan 14, 2016 at 05:32:43PM +0530, Shobhit Kumar wrote: > From: "Kumar, Mahesh" <mahesh1.kumar@intel.com> > > Use FB size for relative data rate calculation. don't always use Minor wording nitpick: it's not really the FB size you're using here but rather the plane size. The FB itself may be larger than the plane and largely offscreen. > pipe source width & height. > adjust height & width according to rotation. > > Signed-off-by: Kumar, Mahesh <mahesh1.kumar@intel.com> > --- > drivers/gpu/drm/i915/intel_pm.c | 42 ++++++++++++++++++++++++++++++++--------- > 1 file changed, 33 insertions(+), 9 deletions(-) > > diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c > index 68f21b9..d33c4ff 100644 > --- a/drivers/gpu/drm/i915/intel_pm.c > +++ b/drivers/gpu/drm/i915/intel_pm.c > @@ -2928,24 +2928,33 @@ skl_plane_relative_data_rate(const struct intel_crtc_state *cstate, > int y) > { > struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc); > + struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate); > struct drm_framebuffer *fb = pstate->fb; > + uint32_t width = 0, height = 0; > + > + if (drm_rect_width(&intel_pstate->src)) { > + width = drm_rect_width(&intel_pstate->src) >> 16; > + height = drm_rect_height(&intel_pstate->src) >> 16; > + } else { > + width = intel_crtc->config->pipe_src_w; > + height = intel_crtc->config->pipe_src_h; The else block would mean the plane is invisible (either off or fully clipped), right? Shouldn't our relative data rate be 0 in that case (instead of max possible)? > + } > + > + if (intel_rotation_90_or_270(pstate->rotation)) > + swap(width, height); > > /* for planar format */ > if (fb->pixel_format == DRM_FORMAT_NV12) { > if (y) /* y-plane data rate */ > - return intel_crtc->config->pipe_src_w * > - intel_crtc->config->pipe_src_h * > + return width * height * > drm_format_plane_cpp(fb->pixel_format, 0); > else /* uv-plane data rate */ > - return (intel_crtc->config->pipe_src_w/2) * > - (intel_crtc->config->pipe_src_h/2) * > + return (width / 2) * (height / 2) * > drm_format_plane_cpp(fb->pixel_format, 1); > } > > /* for packed formats */ > - return intel_crtc->config->pipe_src_w * > - intel_crtc->config->pipe_src_h * > - drm_format_plane_cpp(fb->pixel_format, 0); > + return width * height * drm_format_plane_cpp(fb->pixel_format, 0); > } > > /* > @@ -3181,10 +3190,25 @@ static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv, > uint32_t res_blocks, res_lines; > uint32_t selected_result; > uint8_t bytes_per_pixel; > + struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc); > + struct intel_plane_state *intel_pstate = to_intel_plane_state(plane->state); > + uint32_t width = 0, height = 0; > > if (latency == 0 || !cstate->base.active || !fb) > return false; > > + if (drm_rect_width(&intel_pstate->src)) { > + width = drm_rect_width(&intel_pstate->src) >> 16; > + height = drm_rect_height(&intel_pstate->src) >> 16; > + } else { > + width = intel_crtc->config->pipe_src_w; > + height = intel_crtc->config->pipe_src_h; > + } We're already bailing above this on !fb; shouldn't we do the same on a plane that has a valid fb but is disabled due to being fully clipped (which I think is the only thing that will trigger the else block here)? Matt > + > + if (intel_rotation_90_or_270(plane->state->rotation)) > + swap(width, height); > + > + /* for planar format */ > bytes_per_pixel = (fb->pixel_format == DRM_FORMAT_NV12) ? > drm_format_plane_cpp(fb->pixel_format, 1) : > drm_format_plane_cpp(fb->pixel_format, 0); > @@ -3193,12 +3217,12 @@ static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv, > latency); > method2 = skl_wm_method2(skl_pipe_pixel_rate(cstate), > cstate->base.adjusted_mode.crtc_htotal, > - cstate->pipe_src_w, > + width, > bytes_per_pixel, > fb->modifier[0], > latency); > > - plane_bytes_per_line = cstate->pipe_src_w * bytes_per_pixel; > + plane_bytes_per_line = width * bytes_per_pixel; > plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512); > > if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED || > -- > 2.4.3 >
diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c index 68f21b9..d33c4ff 100644 --- a/drivers/gpu/drm/i915/intel_pm.c +++ b/drivers/gpu/drm/i915/intel_pm.c @@ -2928,24 +2928,33 @@ skl_plane_relative_data_rate(const struct intel_crtc_state *cstate, int y) { struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc); + struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate); struct drm_framebuffer *fb = pstate->fb; + uint32_t width = 0, height = 0; + + if (drm_rect_width(&intel_pstate->src)) { + width = drm_rect_width(&intel_pstate->src) >> 16; + height = drm_rect_height(&intel_pstate->src) >> 16; + } else { + width = intel_crtc->config->pipe_src_w; + height = intel_crtc->config->pipe_src_h; + } + + if (intel_rotation_90_or_270(pstate->rotation)) + swap(width, height); /* for planar format */ if (fb->pixel_format == DRM_FORMAT_NV12) { if (y) /* y-plane data rate */ - return intel_crtc->config->pipe_src_w * - intel_crtc->config->pipe_src_h * + return width * height * drm_format_plane_cpp(fb->pixel_format, 0); else /* uv-plane data rate */ - return (intel_crtc->config->pipe_src_w/2) * - (intel_crtc->config->pipe_src_h/2) * + return (width / 2) * (height / 2) * drm_format_plane_cpp(fb->pixel_format, 1); } /* for packed formats */ - return intel_crtc->config->pipe_src_w * - intel_crtc->config->pipe_src_h * - drm_format_plane_cpp(fb->pixel_format, 0); + return width * height * drm_format_plane_cpp(fb->pixel_format, 0); } /* @@ -3181,10 +3190,25 @@ static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv, uint32_t res_blocks, res_lines; uint32_t selected_result; uint8_t bytes_per_pixel; + struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc); + struct intel_plane_state *intel_pstate = to_intel_plane_state(plane->state); + uint32_t width = 0, height = 0; if (latency == 0 || !cstate->base.active || !fb) return false; + if (drm_rect_width(&intel_pstate->src)) { + width = drm_rect_width(&intel_pstate->src) >> 16; + height = drm_rect_height(&intel_pstate->src) >> 16; + } else { + width = intel_crtc->config->pipe_src_w; + height = intel_crtc->config->pipe_src_h; + } + + if (intel_rotation_90_or_270(plane->state->rotation)) + swap(width, height); + + /* for planar format */ bytes_per_pixel = (fb->pixel_format == DRM_FORMAT_NV12) ? drm_format_plane_cpp(fb->pixel_format, 1) : drm_format_plane_cpp(fb->pixel_format, 0); @@ -3193,12 +3217,12 @@ static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv, latency); method2 = skl_wm_method2(skl_pipe_pixel_rate(cstate), cstate->base.adjusted_mode.crtc_htotal, - cstate->pipe_src_w, + width, bytes_per_pixel, fb->modifier[0], latency); - plane_bytes_per_line = cstate->pipe_src_w * bytes_per_pixel; + plane_bytes_per_line = width * bytes_per_pixel; plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512); if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED ||