1. 09 4月, 2022 1 次提交
  2. 05 3月, 2022 2 次提交
  3. 25 2月, 2022 1 次提交
  4. 24 2月, 2022 5 次提交
  5. 18 2月, 2022 1 次提交
  6. 15 2月, 2022 1 次提交
    • L
      drm/amdgpu: Show IP discovery in sysfs · a6c40b17
      Luben Tuikov 提交于
      Add IP discovery data in sysfs. The format is:
      /sys/class/drm/cardX/device/ip_discovery/die/D/B/I/<attrs>
      where,
      X is the card ID, an integer,
      D is the die ID, an integer,
      B is the IP HW ID, an integer, aka block type,
      I is the IP HW ID instance, an integer.
      <attrs> are the attributes of the block instance. At the moment these
      include HW ID, instance number, major, minor, revision, number of base
      addresses, and the base addresses themselves.
      
      A symbolic link of the acronym HW ID is also created, under D/, if you
      prefer to browse by something humanly accessible.
      
      Cc: Alex Deucher <Alexander.Deucher@amd.com>
      Cc: Tom StDenis <tom.stdenis@amd.com>
      Signed-off-by: NLuben Tuikov <luben.tuikov@amd.com>
      Reviewed-by: NAlex Deucher <Alexander.Deucher@amd.com>
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      a6c40b17
  7. 10 2月, 2022 5 次提交
  8. 03 2月, 2022 2 次提交
  9. 01 2月, 2022 2 次提交
  10. 26 1月, 2022 1 次提交
  11. 20 1月, 2022 1 次提交
  12. 15 1月, 2022 6 次提交
  13. 31 12月, 2021 1 次提交
  14. 30 12月, 2021 1 次提交
  15. 14 12月, 2021 3 次提交
  16. 02 12月, 2021 1 次提交
  17. 17 11月, 2021 1 次提交
  18. 29 10月, 2021 1 次提交
  19. 06 10月, 2021 3 次提交
  20. 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