1. 23 Mar, 2012 1 commit
  2. 22 Mar, 2012 4 commits
  3. 20 Mar, 2012 5 commits
  4. 18 Mar, 2012 7 commits
  5. 02 Mar, 2012 2 commits
  6. 01 Mar, 2012 2 commits
  7. 29 Feb, 2012 8 commits
  8. 27 Feb, 2012 8 commits
  9. 23 Feb, 2012 1 commit
  10. 16 Feb, 2012 2 commits
    • Dave Airlie's avatar
      drm: add some caps for userspace to discover more info for dumb KMS driver (v2) · 019d96cb
      Dave Airlie authored
      For the simple KMS driver case we need some more info about what the preferred
      depth and if a shadow framebuffer is preferred.
      
      I've only added this for intel/radeon which support the dumb ioctls so far.
      
      If you need something really fancy you should be writing a real X.org driver.
      
      v2: drop cursor information, just return an error from the cursor ioctls
      and we can make userspace fallback to sw cursor in that case, cursor
      info was getting too messy, best to start smaller.
      Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
      019d96cb
    • Dave Airlie's avatar
      drm: move pci bus master enable into driver. · 466e69b8
      Dave Airlie authored
      The current enabling of bus mastering in the drm midlayer allows a large
      race condition under kexec. When a kexec'ed kernel re-enables bus mastering
      for the GPU, previously setup dma blocks may cause writes to random pieces
      of memory. On radeon the writeback mechanism can cause these sorts of issues.
      
      This patch doesn't fix the problem, but it moves the bus master enable under
      the individual drivers control so they can move enabling it until later in
      their load cycle and close the race.
      
      Fix for radeon kms driver will be in a follow-up patch.
      Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
      466e69b8