1. 03 10月, 2012 1 次提交
  2. 06 9月, 2012 1 次提交
    • K
      drm: use drm_compat_ioctl for 32-bit apps · 804d74ab
      Keith Packard 提交于
      Most of the DRM drivers appear to be missing the .compat_ioctl file
      operation entry necessary for 32-bit application compatibility.
      
      This patch  uses drm_compat_ioctl for all drivers which don't have
      their own, and which are using drm_ioctl for .unlocked_ioctl.
      
      This leaves drivers/gpu/drm/psb/psb_drv.c unchanged; it has a custom
      .unlocked_ioctl and will presumably need a custom .compat_ioctl as
      well.
      Signed-off-by: NKeith Packard <keithp@keithp.com>
      Signed-off-by: NDave Airlie <airlied@gmail.com>
      804d74ab
  3. 10 8月, 2012 1 次提交
    • D
      drm/mgag200: fix G200ER pll picking algorithm · 9830605d
      Dave Airlie 提交于
      The original code was misported from the X driver,
      
      a) an int went to unsigned int, breaking the downward counting testm code
      b) the port did the vco/computed clock bits completely wrong.
      
      This fixes an infinite loop on modprobe on some Dell servers with the G200ER
      chipset variant.
      
      Found in internal testing.
      
      Cc: stable@vger.kernel.org
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      9830605d
  4. 20 7月, 2012 2 次提交
  5. 01 6月, 2012 1 次提交
  6. 23 5月, 2012 1 次提交
  7. 20 5月, 2012 1 次提交
  8. 19 5月, 2012 1 次提交
  9. 17 5月, 2012 1 次提交
    • D
      mgag200: initial g200se driver (v2) · 414c4531
      Dave Airlie 提交于
      This is a driver for the G200 server engines chips,
      it doesn't driver any of the Matrix G series desktop cards.
      
      It will bind to G200 SE A,B, G200EV, G200WB, G200EH and G200ER cards.
      
      Its based on previous work done my Matthew Garrett but remodelled
      to follow the same style and flow as the AST server driver. It also
      works along the same lines as the AST server driver wrt memory management.
      
      There is no userspace driver planned, xf86-video-modesetting should be used.
      It also appears these GPUs have no ARGB hw cursors.
      
      v2: add missing tagfifo reset + G200 SE memory bw setup pieces.
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      414c4531