1. 14 7月, 2008 1 次提交
    • D
      drm: reorganise drm tree to be more future proof. · c0e09200
      Dave Airlie 提交于
      With the coming of kernel based modesetting and the memory manager stuff,
      the everything in one directory approach was getting very ugly and
      starting to be unmanageable.
      
      This restructures the drm along the lines of other kernel components.
      
      It creates a drivers/gpu/drm directory and moves the hw drivers into
      subdirectores. It moves the includes into an include/drm, and
      sets up the unifdef for the userspace headers we should be exporting.
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      c0e09200
  2. 19 6月, 2008 2 次提交
  3. 07 2月, 2008 2 次提交
  4. 20 10月, 2007 1 次提交
  5. 15 10月, 2007 4 次提交
  6. 12 7月, 2007 1 次提交
  7. 11 7月, 2007 5 次提交
  8. 08 5月, 2007 2 次提交
    • M
      radeon: Don't mess up page flipping when a file descriptor is closed. · 453ff94c
      Michel Dänzer 提交于
      There can still be other contexts that may use page flipping later on, so do
      just unilaterally 'clean it up', which could lead to the wrong page being
      displayed, e.g. when running 3D apps with a GLX compositing manager such as
      compiz using page flipping.
      Signed-off-by: NDave Airlie <airlied@linux.ie>
      453ff94c
    • D
      drm/radeon: upgrade to 1.27 - make PCI GART more flexible · f2b04cd2
      Dave Airlie 提交于
      radeon: make PCI GART aperture size variable, but making table size variable
          This is precursor to getting a TTM backend for this stuff, and also
          allows the PCI table to be allocated at fb 0
      radeon: add support for reverse engineered xpress200m
      
          The IGPGART setup code was traced using mmio-trace on fglrx by myself
          and Phillip Ezolt <phillipezolt@gmail.com> on dri-devel.
      
          This code doesn't let the 3D driver work properly as the card has no
          vertex shader support.
      
          Thanks to Matthew Garrett + Ubuntu for providing me some hardware to do this
          work on.
      Signed-off-by: NDave Airlie <airlied@linux.ie>
      f2b04cd2
  9. 15 12月, 2006 1 次提交
  10. 24 10月, 2006 1 次提交
  11. 22 9月, 2006 5 次提交
  12. 31 8月, 2006 1 次提交
  13. 24 6月, 2006 2 次提交
  14. 19 3月, 2006 3 次提交
  15. 10 1月, 2006 1 次提交
    • D
      drm: fix radeon warnings on 64-bit · f8e0f290
      Dave Airlie 提交于
      From: Andrew Morton <akpm@osdl.org>
      
      drivers/char/drm/radeon_state.c: In function `radeon_cp_dispatch_texture':
      drivers/char/drm/radeon_state.c:1653: warning: int format, different type arg
      (arg 3)
      drivers/char/drm/radeon_state.c:1661: warning: int format, different type arg
      (arg 3)
      drivers/char/drm/radeon_state.c:1689: warning: int format, different type arg
      (arg 3)
      
      sizeof() doesn't return an int.
      
      Cc: Dave Airlie <airlied@linux.ie>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NDave Airlie <airlied@linux.ie>
      f8e0f290
  16. 02 1月, 2006 2 次提交
  17. 10 11月, 2005 1 次提交
    • D
      drm: rename driver hooks more understandably · 22eae947
      Dave Airlie 提交于
      Rename the driver hooks in the DRM to something a little more understandable:
      preinit         ->      load
      postinit        ->      (removed)
      presetup        ->      firstopen
      postsetup       ->      (removed)
      open_helper     ->      open
      prerelease      ->      preclose
      free_filp_priv  ->      postclose
      pretakedown     ->      lastclose
      postcleanup     ->      unload
      release         ->      reclaim_buffers_locked
      version         ->      (removed)
      
      postinit and version were replaced with generic code in the Linux DRM (drivers
      now set their version numbers and description in the driver structure, like on
      BSD).  postsetup wasn't used at all.  Fixes the savage hooks for
      initializing and tearing down mappings at the right times.  Testing involved at
      least starting X, running glxgears, killing glxgears, exiting X, and repeating.
      
      Tested on:      FreeBSD (g200, g400, r200, r128)
                      Linux (r200, savage4)
      
      From: Eric Anholt <anholt@freebsd.org>
      Signed-off-by: NDave Airlie <airlied@linux.ie>
      22eae947
  18. 30 9月, 2005 1 次提交
  19. 25 9月, 2005 2 次提交
  20. 11 9月, 2005 2 次提交