1. 15 3月, 2010 1 次提交
  2. 25 2月, 2010 1 次提交
  3. 11 2月, 2010 1 次提交
  4. 09 2月, 2010 5 次提交
  5. 05 2月, 2010 1 次提交
  6. 24 1月, 2010 1 次提交
  7. 21 1月, 2010 1 次提交
  8. 14 1月, 2010 2 次提交
  9. 08 1月, 2010 1 次提交
  10. 06 1月, 2010 1 次提交
  11. 23 12月, 2009 1 次提交
  12. 10 12月, 2009 1 次提交
  13. 09 12月, 2009 1 次提交
  14. 08 12月, 2009 4 次提交
  15. 02 12月, 2009 4 次提交
  16. 16 10月, 2009 1 次提交
  17. 12 10月, 2009 2 次提交
  18. 06 10月, 2009 1 次提交
    • D
      drm/fb: add more correct 8/16/24/32 bpp fb support. · b8c00ac5
      Dave Airlie 提交于
      The previous patches had some unwanted side effects, I've fixed
      the lack of 32bpp working, and fixed up 16bpp so it should also work.
      
      this also adds the interface to allow the driver to set a preferred
      console depth so for example low memory rn50 can set it to 8bpp.
      It also catches 24bpp on cards that can't do it and forces 32bpp.
      
      Tested on r100/r600/i945.
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      b8c00ac5
  19. 05 10月, 2009 1 次提交
  20. 18 9月, 2009 1 次提交
    • D
      drm/radeon/kms: add initial connector properties · 445282db
      Dave Airlie 提交于
      This adds:
      coherent mode: TMDS coherent mode for atom cards.
      scaling mode: LVDS scaler mode
      load detect: DAC load detection, DVI-I, VGA, TV
      tmds pll: legacy TMDS pll selection
      tv standard: TV standard selection.
      
      for later: other TV ones? dvi subconnector selection using std prop
      
      [contains fixes pointed out on dri-devel for atom bios mixups
       by Michel]
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      445282db
  21. 16 9月, 2009 1 次提交
  22. 08 9月, 2009 1 次提交
  23. 31 8月, 2009 1 次提交
    • D
      drm/kms: move driver specific fb common code to helper functions (v2) · 785b93ef
      Dave Airlie 提交于
      Initially I always meant this code to be shared, but things
      ran away from me before I got to it.
      
      This refactors the i915 and radeon kms fbdev interaction layers
      out into generic helpers + driver specific pieces.
      
      It moves all the panic/sysrq enhancements to the core file,
      and stores a linked list of kernel fbs. This could possibly be
      improved to only store the fb which has fbcon on it for panics
      etc.
      
      radeon retains some specific codes used for a big endian
      workaround.
      
      changes:
      fix oops in v1
      fix freeing path for crtc_info
      Reviewed-by: NJesse Barnes <jbarnes@virtuousgeek.org>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      785b93ef
  24. 29 7月, 2009 1 次提交
  25. 15 7月, 2009 1 次提交
  26. 19 6月, 2009 1 次提交
  27. 15 6月, 2009 1 次提交
    • J
      drm/radeon: introduce kernel modesetting for radeon hardware · 771fe6b9
      Jerome Glisse 提交于
      Add kernel modesetting support to radeon driver, use the ttm memory
      manager to manage memory and DRM/GEM to provide userspace API.
      In order to avoid backward compatibility issue and to allow clean
      design and code the radeon kernel modesetting use different code path
      than old radeon/drm driver.
      
      When kernel modesetting is enabled the IOCTL of radeon/drm
      driver are considered as invalid and an error message is printed
      in the log and they return failure.
      
      KMS enabled userspace will use new API to talk with the radeon/drm
      driver. The new API provide functions to create/destroy/share/mmap
      buffer object which are then managed by the kernel memory manager
      (here TTM). In order to submit command to the GPU the userspace
      provide a buffer holding the command stream, along this buffer
      userspace have to provide a list of buffer object used by the
      command stream. The kernel radeon driver will then place buffer
      in GPU accessible memory and will update command stream to reflect
      the position of the different buffers.
      
      The kernel will also perform security check on command stream
      provided by the user, we want to catch and forbid any illegal use
      of the GPU such as DMA into random system memory or into memory
      not owned by the process supplying the command stream. This part
      of the code is still incomplete and this why we propose that patch
      as a staging driver addition, future security might forbid current
      experimental userspace to run.
      
      This code support the following hardware : R1XX,R2XX,R3XX,R4XX,R5XX
      (radeon up to X1950). Works is underway to provide support for R6XX,
      R7XX and newer hardware (radeon from HD2XXX to HD4XXX).
      
      Authors:
          Jerome Glisse <jglisse@redhat.com>
          Dave Airlie <airlied@redhat.com>
          Alex Deucher <alexdeucher@gmail.com>
      Signed-off-by: NJerome Glisse <jglisse@redhat.com>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      Signed-off-by: NAlex Deucher <alexdeucher@gmail.com>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      771fe6b9