1. 15 Jun, 2018 16 commits
  2. 14 Jun, 2018 1 commit
  3. 13 Jun, 2018 13 commits
  4. 08 Jun, 2018 3 commits
  5. 07 Jun, 2018 4 commits
  6. 04 Jun, 2018 3 commits
    • Sean Paul's avatar
      drm/msm: Fix NULL deref on bind/probe deferral · 74d3a3a7
      Sean Paul authored
      This patch avoids dereferencing msm_host->dev when it is NULL.
      
      If we find ourselves tearing down dsi before calling
      (mdp4|mdp5|dpu)_kms_init(), we'll end up in a state where the dev
      pointer is NULL and trying to extract priv from it will fail.
      
      This was introduced in a seemingly innocuous commit to ensure the
      arguments to msm_gem_put_iova() are correct (even though that
      function has been a stub for ~5 years). Correctness FTW! \o/
      
      Fixes: b01884a286b0 drm/msm: use correct aspace pointer in msm_gem_put_iova()
      Cc: Daniel Mack <daniel@zonque.org>
      Cc: Rob Clark <robdclark@gmail.com>
      Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
      Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
      74d3a3a7
    • Sean Paul's avatar
      drm/msm: Switch to atomic_helper_commit() · d14659f5
      Sean Paul authored
      Now that all of the msm-specific goo is tucked safely away we can switch
      over to using the atomic helper commit directly. \o/
      
      Changes in v2:
      - None
      Changes in v3:
      - Rebased on Archit's private_obj set
      Changes in v4:
      - None
      
      Cc: Abhinav Kumar <abhinavk@codeaurora.org>
      Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
      Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
      d14659f5
    • Sean Paul's avatar
      drm/msm: Remove msm_commit/worker, use atomic helper commit · 70db18dc
      Sean Paul authored
      Moving further towards switching fully to the the atomic helpers, this
      patch removes the hand-rolled worker nonblock commit code and uses the
      atomic helpers commit_work model.
      
      Changes in v2:
      - Remove commit_destroy()
      - Shuffle order of commit_tail calls to further serialize commits
      - Use stall in swap_state to avoid abandoned events on disable
      Changes in v3:
      - Rebased on Archit's private_obj set
      Changes in v4:
      - None
      Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
      Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
      70db18dc