1. 02 Dec, 2010 4 commits
    • Chris Wilson's avatar
      drm/i915: Kill the get_fence tracepoint · 60de2ba5
      Chris Wilson authored
      As the tracepoint is now decoupled from when the actual register is
      assigned and was never complemented by detailing when the object lost
      its fence, it has outlived its limited usefulness. Profiling the actual
      stalls is a far more profitable venture anyway.
      Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
      60de2ba5
    • Chris Wilson's avatar
      drm/i915: Remove inactive LRU tracking from set_domain_ioctl · c6748e09
      Chris Wilson authored
      As the userspace mappings are torn down on every GPU write, we prefer to
      track when the buffer is activated (via a fresh i915_gem_fault). This
      makes the LRU conceptually simpler. With coherent mappings, the
      remaining use-case for set_domain_ioctl is GPU synchronisation.
      Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
      c6748e09
    • Chris Wilson's avatar
      drm/i915: Pipelined fencing [infrastructure] · d9e86c0e
      Chris Wilson authored
      With this change, every batchbuffer can use all available fences (save
      pinned and scanout, of course) without ever stalling the gpu!
      
      In theory. Currently the actual pipelined update of the register is
      disabled due to some stability issues. However, just the deferred update
      is a significant win.
      
      Based on a series of patches by Daniel Vetter.
      
      The premise is that before every access to a buffer through the GTT we
      have to declare whether we need a register or not. If the access is by
      the GPU, a pipelined update to the register is made via the ringbuffer,
      and we track the last seqno of the batches that access it. If by the
      CPU we wait for the last GPU access and update the register (either
      to clear or to set it for the current buffer).
      
      One advantage of being able to pipeline changes is that we can defer the
      actual updating of the fence register until we first need to access the
      object through the GTT, i.e. we can eliminate the stall on set_tiling.
      This is important as the userspace bo cache does not track the tiling
      status of active buffers which generate frequent stalls on gen3 when
      enabling tiling for an already bound buffer.
      Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
      Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
      d9e86c0e
    • Chris Wilson's avatar
  2. 01 Dec, 2010 1 commit
  3. 30 Nov, 2010 2 commits
  4. 28 Nov, 2010 4 commits
  5. 25 Nov, 2010 7 commits
  6. 24 Nov, 2010 4 commits
  7. 23 Nov, 2010 18 commits