From: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
To: "Ville Syrjälä" <ville.syrjala@linux.intel.com>,
"Chris Wilson" <chris@chris-wilson.co.uk>,
intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: Track pinned vma in intel_plane_state
Date: Wed, 4 Jan 2017 17:35:17 +0100 [thread overview]
Message-ID: <0ebc7394-4221-2a98-1d0d-2b9e15353d11@linux.intel.com> (raw)
In-Reply-To: <20170104154750.GH31595@intel.com>
Op 04-01-17 om 16:47 schreef Ville Syrjälä:
> On Wed, Jan 04, 2017 at 03:14:45PM +0000, Chris Wilson wrote:
>> On Wed, Jan 04, 2017 at 05:06:46PM +0200, Ville Syrjälä wrote:
>>> On Wed, Jan 04, 2017 at 02:31:26PM +0100, Maarten Lankhorst wrote:
>>>> From: Chris Wilson <chris@chris-wilson.co.uk>
>>>>
>>>> With atomic plane states we are able to track an allocation right from
>>>> preparation, during use and through to the final free after being
>>>> swapped out for a new plane. We can couple the VMA we pin for the
>>>> framebuffer (and its rotation) to this lifetime and avoid all the clumsy
>>>> lookups in between.
>>>>
>>>> v2: Remove residual vma on plane cleanup (Chris)
>>>> v3: Add a description for the vma destruction in
>>>> intel_plane_destroy_state (Maarten)
>>>>
>>>> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
>>>> Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
>>>> ---
>>>> drivers/gpu/drm/i915/i915_drv.h | 16 +---
>>>> drivers/gpu/drm/i915/intel_atomic_plane.c | 20 +++++
>>>> drivers/gpu/drm/i915/intel_display.c | 129 +++++++++++-------------------
>>>> drivers/gpu/drm/i915/intel_drv.h | 9 ++-
>>>> drivers/gpu/drm/i915/intel_fbc.c | 52 +++++-------
>>>> drivers/gpu/drm/i915/intel_fbdev.c | 4 +-
>>>> drivers/gpu/drm/i915/intel_sprite.c | 8 +-
>>>> 7 files changed, 103 insertions(+), 135 deletions(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
>>>> index 22d3f610212c..5369f5f9ce3a 100644
>>>> --- a/drivers/gpu/drm/i915/i915_drv.h
>>>> +++ b/drivers/gpu/drm/i915/i915_drv.h
>>>> @@ -1079,6 +1079,8 @@ struct intel_fbc {
>>>> struct work_struct underrun_work;
>>>>
>>>> struct intel_fbc_state_cache {
>>>> + struct i915_vma *vma;
>>>> +
>>>> struct {
>>>> unsigned int mode_flags;
>>>> uint32_t hsw_bdw_pixel_rate;
>>>> @@ -1092,15 +1094,14 @@ struct intel_fbc {
>>>> } plane;
>>>>
>>>> struct {
>>>> - u64 ilk_ggtt_offset;
>>>> const struct drm_format_info *format;
>>>> unsigned int stride;
>>>> - int fence_reg;
>>>> - unsigned int tiling_mode;
>>>> } fb;
>>>> } state_cache;
>>>>
>>>> struct intel_fbc_reg_params {
>>>> + struct i915_vma *vma;
>>>> +
>>>> struct {
>>>> enum pipe pipe;
>>>> enum plane plane;
>>>> @@ -1108,10 +1109,8 @@ struct intel_fbc {
>>>> } crtc;
>>>>
>>>> struct {
>>>> - u64 ggtt_offset;
>>>> const struct drm_format_info *format;
>>>> unsigned int stride;
>>>> - int fence_reg;
>>>> } fb;
>>>>
>>>> int cfb_size;
>>>> @@ -3406,13 +3405,6 @@ i915_gem_object_to_ggtt(struct drm_i915_gem_object *obj,
>>>> return i915_gem_obj_to_vma(obj, &to_i915(obj->base.dev)->ggtt.base, view);
>>>> }
>>>>
>>>> -static inline unsigned long
>>>> -i915_gem_object_ggtt_offset(struct drm_i915_gem_object *o,
>>>> - const struct i915_ggtt_view *view)
>>>> -{
>>>> - return i915_ggtt_offset(i915_gem_object_to_ggtt(o, view));
>>>> -}
>>>> -
>>>> /* i915_gem_fence_reg.c */
>>>> int __must_check i915_vma_get_fence(struct i915_vma *vma);
>>>> int __must_check i915_vma_put_fence(struct i915_vma *vma);
>>>> diff --git a/drivers/gpu/drm/i915/intel_atomic_plane.c b/drivers/gpu/drm/i915/intel_atomic_plane.c
>>>> index 4612ffd555a7..41fd94e62d3c 100644
>>>> --- a/drivers/gpu/drm/i915/intel_atomic_plane.c
>>>> +++ b/drivers/gpu/drm/i915/intel_atomic_plane.c
>>>> @@ -85,6 +85,8 @@ intel_plane_duplicate_state(struct drm_plane *plane)
>>>>
>>>> __drm_atomic_helper_plane_duplicate_state(plane, state);
>>>>
>>>> + intel_state->vma = NULL;
>>> Shouldn't we be doing vma_get() instead?
>> I went with NULL (dropping the copy) for simplicity. Before the plane
>> can be used it must be prepared, so vma will always be set before
>> commiting, and using NULL avoided having the reference counting dance.
>> It also allowed detection of when we didn't prepare the plane as
>> required.
> Hmm. Does that risk some kind of failure at prepare_fb time if the vma
> got nuked in the meantime? I guess that might ahve to involve
> suspend/resume or some other case where we duplicate the state and
> don't hang on to the old state.
I think the way this is done is sane, and a nice safeguard against forgetting to call prepare.
The old mapping is still around when prepare_plane_fb is called, and we keep the vma during suspend/resume
since we never unset the plane fb. We only set crtc_state->active = false (dpms off).
~Maarten
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
prev parent reply other threads:[~2017-01-04 16:35 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-04 13:31 [PATCH] drm/i915: Track pinned vma in intel_plane_state Maarten Lankhorst
2017-01-04 14:45 ` ✗ Fi.CI.BAT: warning for " Patchwork
2017-01-04 15:06 ` [PATCH] " Ville Syrjälä
2017-01-04 15:14 ` Chris Wilson
2017-01-04 15:47 ` Ville Syrjälä
2017-01-04 16:00 ` Chris Wilson
2017-01-04 16:06 ` Ville Syrjälä
2017-01-04 16:19 ` Chris Wilson
2017-01-04 19:06 ` Maarten Lankhorst
2017-01-04 16:35 ` Maarten Lankhorst [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=0ebc7394-4221-2a98-1d0d-2b9e15353d11@linux.intel.com \
--to=maarten.lankhorst@linux.intel.com \
--cc=chris@chris-wilson.co.uk \
--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