1. 04 3月, 2014 1 次提交
  2. 19 2月, 2014 2 次提交
  3. 25 12月, 2013 2 次提交
    • A
      drm/radeon: remove generic rptr/wptr functions (v2) · ea31bf69
      Alex Deucher 提交于
      Fill in asic family specific versions rather than
      using the generic version.  This lets us handle asic
      specific differences more easily.  In this case, we
      disable sw swapping of the rtpr writeback value on
      r6xx+ since the hw does it for us.  Fixes bogus
      rptr readback on BE systems.
      
      v2: remove missed cpu_to_le32(), add comments
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      ea31bf69
    • A
      drm/radeon/pm: move pm handling into the asic specific code · 6c7bccea
      Alex Deucher 提交于
      We need more control over the ordering of dpm init with
      respect to the rest of the asic.  Specifically, the SMC
      has to be initialized before the rlc and cg/pg.  The pm
      code currently initializes late in the driver, but we need
      it to happen much earlier so move pm handling into the asic
      specific callbacks.
      
      This makes dpm more reliable and makes clockgating work
      properly on CIK parts and should help on SI parts as well.
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      6c7bccea
  4. 16 11月, 2013 1 次提交
  5. 06 11月, 2013 1 次提交
  6. 21 9月, 2013 1 次提交
  7. 11 9月, 2013 1 次提交
  8. 31 8月, 2013 1 次提交
  9. 23 7月, 2013 1 次提交
  10. 14 7月, 2013 1 次提交
  11. 06 7月, 2013 1 次提交
  12. 03 6月, 2013 1 次提交
    • A
      radeon: Fix system hang issue when using KMS with older cards · e49f3959
      Adis Hamzić 提交于
      The current radeon driver initialization routines, when using KMS, are written
      so that the IRQ installation routine is called before initializing the WB buffer
      and the CP rings. With some ASICs, though, the IRQ routine tries to access the
      GFX_INDEX ring causing a call to RREG32 with the value of -1 in
      radeon_fence_read. This, in turn causes the system to completely hang with some
      cards, requiring a hard reset.
      
      A call stack that can cause such a hang looks like this (using rv515 ASIC for the
      example here):
       * rv515_init (rv515.c)
       * radeon_irq_kms_init (radeon_irq_kms.c)
       * drm_irq_install (drm_irq.c)
       * radeon_driver_irq_preinstall_kms (radeon_irq_kms.c)
       * rs600_irq_process (rs600.c)
       * radeon_fence_process - due to SW interrupt (radeon_fence.c)
       * radeon_fence_read (radeon_fence.c)
       * hang due to RREG32(-1)
      
      The patch moves the IRQ installation to the card startup routine, after the ring
      has been initialized, but before the IRQ has been set. This fixes the issue, but
      requires a check to see if the IRQ is already installed, as is the case in the
      system resume codepath.
      I have tested the patch on three machines using the rv515, the rv770 and the
      evergreen ASIC. They worked without issues.
      
      This seems to be a known issue and has been reported on several bug tracking
      sites by various distributions (see links below). Most of reports recommend
      booting the system with KMS disabled and then enabling KMS by reloading the
      radeon module. For some reason, this was indeed a usable workaround, however,
      UMS is now deprecated and disabled by default.
      
      Bug reports:
      https://bugzilla.redhat.com/show_bug.cgi?id=845745
      https://bugs.launchpad.net/ubuntu/+source/linux/+bug/561789
      https://bbs.archlinux.org/viewtopic.php?id=156964Signed-off-by: NAdis Hamzić <adis@hamzadis.com>
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      Cc: stable@vger.kernel.org
      e49f3959
  13. 22 4月, 2013 1 次提交
  14. 01 2月, 2013 5 次提交
  15. 14 12月, 2012 2 次提交
  16. 03 10月, 2012 2 次提交
  17. 27 9月, 2012 1 次提交
  18. 21 9月, 2012 6 次提交
  19. 18 7月, 2012 3 次提交
  20. 17 7月, 2012 2 次提交
  21. 29 6月, 2012 2 次提交
  22. 21 6月, 2012 2 次提交