1. 22 10月, 2010 1 次提交
  2. 20 10月, 2010 1 次提交
  3. 19 10月, 2010 3 次提交
  4. 08 10月, 2010 2 次提交
  5. 07 10月, 2010 1 次提交
  6. 04 10月, 2010 1 次提交
  7. 28 9月, 2010 1 次提交
  8. 27 9月, 2010 1 次提交
  9. 26 9月, 2010 1 次提交
  10. 25 9月, 2010 2 次提交
  11. 21 9月, 2010 3 次提交
  12. 18 9月, 2010 1 次提交
    • C
      drm/i915: use GMBUS to manage i2c links · f899fc64
      Chris Wilson 提交于
      Use the GMBUS interface rather than direct bit banging to grab the EDID
      over DDC (and for other forms of auxiliary communication with external
      display controllers). The hope is that this method will be much faster
      and more reliable than bit banging for fetching EDIDs from buggy monitors
      or through switches, though we still preserve the bit banging as a
      fallback in case GMBUS fails.
      
      Based on an original patch by Jesse Barnes.
      
      Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
      Signed-off-by: NChris Wilson <chris@chris-wilson.co.uk>
      f899fc64
  13. 10 9月, 2010 1 次提交
    • C
      drm/i915: Adapt workqueue to new alloc_workqueue interface · e642abbf
      Chris Wilson 提交于
      create_singlethreaded_workqueue() is being phased out for a new
      concurrency managed task infrastructure.
      
      Adapt our workqueue constructor to explicitly create a domain that only
      allows the execution of a single task at any time. All the tasks are
      expected to require the dev->struct_mutex, so would block concurrency of
      other tasks if we allow more than a single i915 task to be run at once.
      Signed-off-by: NChris Wilson <chris@chris-wilson.co.uk>
      e642abbf
  14. 09 9月, 2010 3 次提交
  15. 08 9月, 2010 10 次提交
  16. 07 9月, 2010 3 次提交
  17. 17 8月, 2010 1 次提交
    • D
      drm: block userspace under allocating buffer and having drivers overwrite it (v2) · 1b2f1489
      Dave Airlie 提交于
      With the current screwed but its ABI, ioctls for the drm, Linus pointed out that we could allow userspace to specify the allocation size, but we pass it to the driver which then uses it blindly to store a struct. Now if userspace specifies the allocation size as smaller than the driver needs, the driver can possibly overwrite memory.
      
      This patch restructures the driver ioctls so we store the structure size we are expecting, and make sure we allocate at least that size. The copy from/to userspace are still restricted to the size the user specifies, this allows ioctl structs to grow on both sides of the equation.
      
      Up until now we didn't really use the DRM_IOCTL defines in the kernel, so this cleans them up and adds them for nouveau.
      
      v2:
      fix nouveau pushbuf arg (thanks to Ben for pointing it out)
      Reported-by: NLinus Torvalds <torvalds@linuxfoundation.org>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      1b2f1489
  18. 10 8月, 2010 1 次提交
  19. 02 8月, 2010 2 次提交
  20. 27 7月, 2010 1 次提交