1. 22 10月, 2015 4 次提交
  2. 21 10月, 2015 2 次提交
  3. 20 10月, 2015 1 次提交
    • M
      drm/i915/skl: Eliminate usage of pipe_wm_parameters from SKL-style WM (v4) · 024c9045
      Matt Roper 提交于
      Just pull the info out of the state structures rather than staging
      it in an additional set of structures.  To make this more
      straightforward, we change the signature of several internal WM
      functions to take the crtc state as a parameter.
      
      v2:
       - Don't forget to skip cursor planes on a loop in the DDB allocation
         function to match original behavior.  (Ander)
       - Change a use of intel_crtc->active to cstate->active.  They should
         be identical, but it's better to be consistent.  (Ander)
       - Rework more function signatures to pass states rather than crtc for
         consistency. (Ander)
      
      v3:
        - Add missing "+ 1" to skl_wm_plane_id()'s 'overlay' case. (Maarten)
        - Packed formats should pass '0' to drm_format_plane_cpp(), not 1.
          (Maarten)
        - Drop unwanted WARN_ON() for disabled planes when calculating data
          rate for SKL.  (Maarten)
      
      v4:
       - Don't include cursor plane in total relative data rate calculation;
         we've already handled the cursor allocation earlier.
       - Fix 'bytes_per_pixel' calculation braindamage.  Somehow I hardcoded
         the NV12 format as a parameter rather than the actual
         fb->pixel_format, and even then still managed to get the format plane
         wrong.  (Ville)
       - Use plane->state->fb rather than plane->fb in
         skl_allocate_pipe_ddb(); the plane->fb pointer isn't updated until
         after we've done our watermark recalculation, so it has stale
         values.  (Bob Paauwe)
      Signed-off-by: NMatt Roper <matthew.d.roper@intel.com>
      Reviewed-by(v3): Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
      Cc: Paauwe, Bob J <bob.j.paauwe@intel.com>
      Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
      Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
      References: http://lists.freedesktop.org/archives/intel-gfx/2015-September/077060.html
      References: http://lists.freedesktop.org/archives/intel-gfx/2015-October/077721.html
      Smoke-tested-by(v4): Paulo Zanoni <paulo.r.zanoni@intel.com> (SKL)
      Link: http://patchwork.freedesktop.org/patch/61968/
      024c9045
  4. 13 10月, 2015 2 次提交
  5. 09 10月, 2015 1 次提交
  6. 07 10月, 2015 1 次提交
  7. 06 10月, 2015 1 次提交
  8. 30 9月, 2015 18 次提交
  9. 23 9月, 2015 7 次提交
  10. 22 9月, 2015 1 次提交
    • B
      drm/i915/skl: Don't clear all watermarks when updating. (v2) · adda50b8
      Bob Paauwe 提交于
      Clearing the watermarks for all pipes/planes when updating the
      watermarks for a single CRTC change seems like the wrong thing to
      do here. As is, this code will ony update any pipe/plane watermarks
      that need updating and leave the remaining set to zero.  Later, the
      watermark checks in check_wm_state() will flag these zero'd out pipe/plane
      watermarks and throw errors.
      
      By clearing only the watermark values associated with the specific crtc
      the other watermark values may remain unchanged.
      
      v2: Make sure all the dirty flags are cleared. Damien
          Clear all values assoicated with crtc/pipe being updated.  Damien
      Signed-off-by: NBob Paauwe <bob.j.paauwe@intel.com>
      Reviewed-by: NDamien Lespiau <damien.lespiau@intel.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      adda50b8
  11. 14 9月, 2015 1 次提交
  12. 10 9月, 2015 1 次提交