1. 07 5月, 2022 1 次提交
  2. 06 5月, 2022 2 次提交
  3. 04 5月, 2022 12 次提交
  4. 26 4月, 2022 1 次提交
  5. 12 4月, 2022 1 次提交
    • G
      drm/amdgpu: Fix incorrect enum type · 6f90a49b
      Grigory Vasilyev 提交于
      Instead of the 'amdgpu_ring_priority_level' type,
      the 'amdgpu_gfx_pipe_priority' type was used,
      which is an error when setting ring priority.
      This is a minor error, but may cause problems in the future.
      
      Instead of AMDGPU_RING_PRIO_2 = 2, we can use AMDGPU_RING_PRIO_MAX = 3,
      but AMDGPU_RING_PRIO_2 = 2 is used for compatibility with
      AMDGPU_GFX_PIPE_PRIO_HIGH = 2, and not change the behavior of the
      code.
      Signed-off-by: NGrigory Vasilyev <h0tc0d3@gmail.com>
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      6f90a49b
  6. 09 4月, 2022 1 次提交
  7. 01 4月, 2022 1 次提交
  8. 26 3月, 2022 1 次提交
  9. 16 3月, 2022 1 次提交
  10. 03 3月, 2022 4 次提交
  11. 18 2月, 2022 1 次提交
  12. 17 2月, 2022 2 次提交
  13. 12 2月, 2022 1 次提交
  14. 10 2月, 2022 1 次提交
  15. 26 1月, 2022 3 次提交
  16. 25 11月, 2021 2 次提交
  17. 06 11月, 2021 1 次提交
  18. 04 11月, 2021 1 次提交
  19. 22 10月, 2021 1 次提交
  20. 20 10月, 2021 1 次提交
  21. 05 10月, 2021 1 次提交
    • A
      drm/amdgpu: convert IP version array to include instances · 1d789535
      Alex Deucher 提交于
      Allow us to query instances versions more cleanly.
      
      Instancing support is not consistent unfortunately. SDMA is a
      good example.  Sienna cichlid has 4 total SDMA instances, each
      enumerated separately (HWIDs 42, 43, 68, 69).  Arcturus has 8
      total SDMA instances, but they are enumerated as multiple
      instances of the same HWIDs (4x HWID 42, 4x HWID 43).  UMC
      is another example.  On most chips there are multiple
      instances with the same HWID.  This allows us to support both
      forms.
      
      v2: rebase
      v3: clarify instancing support
      Reviewed-by: NChristian König <christian.koenig@amd.com>
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      1d789535