1. 16 12月, 2009 2 次提交
  2. 10 12月, 2009 2 次提交
  3. 08 12月, 2009 4 次提交
  4. 04 12月, 2009 1 次提交
  5. 02 12月, 2009 6 次提交
  6. 24 11月, 2009 1 次提交
    • D
      drm/radeon/kms: resume AGP by calling init. · 0ebf1717
      Dave Airlie 提交于
      AGP resume was broken since we moved to the new init path,
      because we never re-enabled AGP on these systems at resume time.
      
      This patch just calls the AGP resume call which just does the reinit
      at resume time like the old path did.
      
      Since AGP is pretty much gpu independant I did it outside
      the gpu specific code.
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      0ebf1717
  7. 06 11月, 2009 1 次提交
  8. 26 10月, 2009 1 次提交
  9. 16 10月, 2009 1 次提交
  10. 02 10月, 2009 7 次提交
  11. 29 9月, 2009 2 次提交
  12. 25 9月, 2009 1 次提交
    • D
      drm/radeon/kms: don't require up to 64k allocations. (v2) · 513bcb46
      Dave Airlie 提交于
      This avoids needing to do a kmalloc > PAGE_SIZE for the main
      indirect buffer chunk, it adds an accessor for all reads from
      the chunk and caches a single page at a time for subsequent
      reads.
      
      changes since v1:
      Use a two page pool which should be the most common case
      a single packet spanning > PAGE_SIZE will be hit, but I'm
      having trouble seeing anywhere we currently generate anything like that.
      hopefully proper short page copying at end
      added parser_error flag to set deep errors instead of having to test
      every ib value fetch.
      fixed bug in patch that went to list.
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      513bcb46
  13. 23 9月, 2009 1 次提交
  14. 21 9月, 2009 3 次提交
  15. 18 9月, 2009 1 次提交
  16. 16 9月, 2009 2 次提交
  17. 15 9月, 2009 1 次提交
    • J
      drm/radeon/kms: clear confusion in GART init/deinit path · 4aac0473
      Jerome Glisse 提交于
      GART static one time initialization was mixed up with GART
      enabling/disabling which could happen several time for instance
      during suspend/resume cycles. This patch splits all GART
      handling into 4 differents function. gart_init is for one
      time initialization, gart_deinit is called upon module unload
      to free resources allocated by gart_init, gart_enable enable
      the GART and is intented to be call after first initialization
      and at each resume cycle or reset cycle. Finaly gart_disable
      stop the GART and is intended to be call at suspend time or
      when unloading the module.
      Signed-off-by: NJerome Glisse <jglisse@redhat.com>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      4aac0473
  18. 14 9月, 2009 2 次提交
  19. 11 9月, 2009 1 次提交