1. 28 11月, 2016 1 次提交
  2. 14 11月, 2016 1 次提交
    • S
      drm/fb-helper: fix segfaults in drm_fb_helper_debug_* · 1b99b724
      Stefan Christ 提交于
      A drm driver that is implementing
      
            fb_debug_enter and fb_debug_leave
      
      in struct fb_ops with drm fb helper functions
      
           drm_fb_helper_debug_enter and drm_fb_helper_debug_leave
      
      must also implement the callback 'mode_set_base_atomic' in struct
      drm_crtc_helper_funcs. See Documentation/DocBook/kgdb.tmpl.  The current
      implementation will segfault when 'mode_set_base_atomic' is a NULL
      pointer.
      
      Before this patch at least the drm drivers armada, ast, qxl, udl and
      virtio do not have a 'mode_set_base_atomic' implementation but using
      drm_fb_helper_debug_(enter|leave). So these drivers may segfault when
      callbacks fb_debug_(enter|leave) are called.
      
      Avoid the issue by just checking for NULL pointers. So all drivers can
      unconditionally implement fb_debug_(enter|leave) with the drm_fb_helper
      functions. If callback 'mode_set_base_atomic' is not implemented, the
      code in drm_fb_helper_debug_(enter|leave) does effectively nothing.
      Signed-off-by: NStefan Christ <contact@stefanchrist.eu>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      Link: http://patchwork.freedesktop.org/patch/msgid/1479078208-25221-2-git-send-email-contact@stefanchrist.eu
      1b99b724
  3. 27 10月, 2016 1 次提交
    • V
      drm/fb-helper: Keep references for the current set of used connectors · a2889606
      Ville Syrjälä 提交于
      The fbdev helper code keeps around two lists of connectors. One is the
      list of all connectors it could use, and that list already holds
      references for all the connectors. However the other list, or rather
      lists, is the one actively being used. That list is tracked per-crtc
      and currently doesn't hold any extra references. Let's grab those
      extra references to avoid oopsing when the connector vanishes. The
      list of all possible connectors should get updated when the hpd happens,
      but the list of actively used connectors would not get updated until
      the next time the fb-helper picks through the set of possible connectors.
      And so we need to hang on to the connectors until that time.
      
      Since we need to clean up in drm_fb_helper_crtc_free() as well,
      let's pull the code to a common place. And while at it let's
      pull in up the modeset->mode cleanup in there as well. The case
      of modeset->fb is a bit less clear. I'm thinking we should probably
      hold a reference to it, but for now I just slapped on a FIXME.
      
      v2: Cleanup things drm_fb_helper_crtc_free() too (Chris)
      v3: Don't leak modeset->connectors (Chris)
      
      Cc: Chris Wilson <chris@chris-wilson.co.uk>
      Cc: stable@vger.kernel.org
      Cc: Carlos Santa <carlos.santa@intel.com>
      Cc: Kirill A. Shutemov <kirill@shutemov.name>
      Tested-by: Carlos Santa <carlos.santa@intel.com> (v1)
      Tested-by: Kirill A. Shutemov <kirill@shutemov.name> (v1)
      Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=97666Signed-off-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
      Reviewed-by: NChris Wilson <chris@chris-wilson.co.uk>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      Link: http://patchwork.freedesktop.org/patch/msgid/1477492878-4990-1-git-send-email-ville.syrjala@linux.intel.com
      a2889606
  4. 26 10月, 2016 2 次提交
  5. 22 10月, 2016 2 次提交
  6. 17 10月, 2016 2 次提交
  7. 19 9月, 2016 1 次提交
  8. 24 8月, 2016 1 次提交
  9. 23 8月, 2016 1 次提交
  10. 18 8月, 2016 1 次提交
  11. 16 8月, 2016 1 次提交
  12. 12 8月, 2016 1 次提交
  13. 09 8月, 2016 1 次提交
  14. 22 6月, 2016 2 次提交
  15. 09 6月, 2016 1 次提交
  16. 07 6月, 2016 2 次提交
  17. 31 5月, 2016 1 次提交
  18. 17 5月, 2016 1 次提交
    • L
      drm/fb_helper: Fix references to dev->mode_config.num_connector · 255f0e7c
      Lyude 提交于
      During boot, MST hotplugs are generally expected (even if no physical
      hotplugging occurs) and result in DRM's connector topology changing.
      This means that using num_connector from the current mode configuration
      can lead to the number of connectors changing under us. This can lead to
      some nasty scenarios in fbcon:
      
      - We allocate an array to the size of dev->mode_config.num_connectors.
      - MST hotplug occurs, dev->mode_config.num_connectors gets incremented.
      - We try to loop through each element in the array using the new value
        of dev->mode_config.num_connectors, and end up going out of bounds
        since dev->mode_config.num_connectors is now larger then the array we
        allocated.
      
      fb_helper->connector_count however, will always remain consistent while
      we do a modeset in fb_helper.
      
      Note: This is just polish for 4.7, Dave Airlie's drm_connector
      refcounting fixed these bugs for real. But it's good enough duct-tape
      for stable kernel backporting, since backporting the refcounting
      changes is way too invasive.
      
      Cc: stable@vger.kernel.org
      Signed-off-by: NLyude <cpaul@redhat.com>
      [danvet: Clarify why we need this. Also remove the now unused "dev"
      local variable to appease gcc.]
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      Link: http://patchwork.freedesktop.org/patch/msgid/1463065021-18280-3-git-send-email-cpaul@redhat.com
      255f0e7c
  19. 12 5月, 2016 1 次提交
  20. 05 5月, 2016 2 次提交
  21. 02 5月, 2016 1 次提交
  22. 15 2月, 2016 2 次提交
  23. 12 2月, 2016 1 次提交
  24. 25 1月, 2016 1 次提交
  25. 21 12月, 2015 1 次提交
    • M
      drm/fb-helper: Use proper plane mask for fb cleanup · 7118fd9b
      Matt Roper 提交于
      pan_display_atomic() calls drm_atomic_clean_old_fb() to sanitize the
      legacy FB fields (plane->fb and plane->old_fb).  However it was building
      the plane mask to pass to this function incorrectly (the bitwise OR was
      using plane indices rather than plane masks).  The end result was that
      sometimes the legacy pointers would become out of sync with the atomic
      pointers.  If another operation tried to re-set the same FB onto the
      plane, we might end up with the pointers back in sync, but improper
      reference counts, which would eventually lead to system crashes when we
      accessed a pointer to a prematurely-destroyed FB.
      
      The cause here was a very subtle bug introduced in commit:
      
              commit 07d3bad6
              Author: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
              Date:   Wed Nov 11 11:29:11 2015 +0100
      
                  drm/core: Fix old_fb handling in pan_display_atomic.
      
      I found the crashes were most easily reproduced (on i915 at least) by
      starting X and then VT switching to a VT that wasn't running a console
      instance...the sequence of vt/fbcon entries that happen in that case
      trigger a reference count mismatch and crash the system.
      
      Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
      Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
      Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93313Signed-off-by: NMatt Roper <matthew.d.roper@intel.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      7118fd9b
  26. 17 11月, 2015 2 次提交
  27. 19 10月, 2015 2 次提交
  28. 02 10月, 2015 1 次提交
  29. 25 9月, 2015 1 次提交
    • M
      drm/fbdev: Update legacy plane->fb refcounting for atomic restore · 94284037
      Matt Roper 提交于
      Starting with commit
      
              commit 28cc504e
              Author: Rob Clark <robdclark@gmail.com>
              Date:   Tue Aug 25 15:36:00 2015 -0400
      
                  drm/i915: enable atomic fb-helper
      
      I've been seeing some panics on i915 when the DRM master shuts down that appear
      to be caused by using an already-freed framebuffer (i.e., we're unexpectedly
      dropping our initial FB's reference count to 0 and freeing it, which causes a
      crash when we try to restore it later).  Digging deeper, the state FB
      refcounting is working as expected, but we seem to be missing proper
      refcounting on the legacy plane->fb pointers in the new atomic fbdev code.
      
      Tracking plane->old_fb and then doing a ref/unref at the end of the
      fbdev restore like we do in the legacy ioctl's ensures we don't miscount
      references on plane->fb and avoids the panics.
      
      v2 from Daniel:
      
      Really do what the atomic ioctl does:
      - Also update plane->fb and plane->crtc.
      - Clear out plane->old_fb on failures too.
      
      v3: git add everything. Oops.
      
      v4: Also clear old_fb in all other failure paths, spotted by David.
      
      Cc: Rob Clark <robdclark@gmail.com>
      Cc: intel-gfx@lists.freedesktop.org
      Cc: David Herrmann <dh.herrmann@gmail.com>
      Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
      Signed-off-by: Matt Roper <matthew.d.roper@intel.com> (v1)
      Reviewd-by: NDavid Herrmann <dh.herrmann@gmail.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      94284037
  30. 17 9月, 2015 2 次提交