dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] Add Fiji Support
@ 2015-08-03 17:58 Alex Deucher
  2015-08-03 17:58 ` [PATCH 01/11] drm/amdgpu: Add Fiji DID 0x7300 common support Alex Deucher
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Alex Deucher @ 2015-08-03 17:58 UTC (permalink / raw)
  To: dri-devel; +Cc: Alex Deucher

This patch set adds Fiji support to the open source amdgpu
driver.  The relevant mesa and ddx changes have also been
sent out the their respective mailing lists.  Support for
Fiji is complete (GFX, SDMA, UVD, VCE, etc.) except for
power management.  Power management for dGPUs is still
in progress an will be released in the future.

Alex Deucher (2):
  drm/amdgpu: Add Fiji support to the GFX 8.0 IP module (v2)
  drm/amdgpu: add support for VCE 3.x on Fiji

David Zhang (9):
  drm/amdgpu: Add Fiji DID 0x7300 common support
  drm/amdgpu: Add Fiji support to the GMC 8.5 IP module
  drm/amdgpu: Add Fiji support to IH module
  drm/amdgpu: Add Fiji smu 7.1.3 headers (v2)
  drm/amdgpu: Add Fiji support to SMC and DPM (v2)
  drm/amdgpu: Add Fiji support to the DCE 10.0 IP module (v2)
  drm/amdgpu: Add Fiji support to the SDMA 3.0 IP module
  drm/amdgpu: Add Fiji support to the UVD 6.0 IP module
  drm/amdgpu: Enable the Fiji DID 0x7300 support

 drivers/gpu/drm/amd/amdgpu/Makefile                |    1 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_device.c         |    2 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c            |    2 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c            |    5 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c            |    5 +
 drivers/gpu/drm/amd/amdgpu/dce_v10_0.c             |   23 +
 drivers/gpu/drm/amd/amdgpu/fiji_dpm.c              |  181 +
 drivers/gpu/drm/amd/amdgpu/fiji_ppsmc.h            |  182 +
 drivers/gpu/drm/amd/amdgpu/fiji_smc.c              |  853 +++
 drivers/gpu/drm/amd/amdgpu/fiji_smumgr.h           |   42 +
 drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c              |  109 +-
 drivers/gpu/drm/amd/amdgpu/gmc_v8_0.c              |   25 +
 drivers/gpu/drm/amd/amdgpu/sdma_v3_0.c             |   31 +
 drivers/gpu/drm/amd/amdgpu/vce_v3_0.c              |    7 +
 drivers/gpu/drm/amd/amdgpu/vi.c                    |   90 +
 drivers/gpu/drm/amd/amdgpu/vi_dpm.h                |    2 +-
 drivers/gpu/drm/amd/include/amd_shared.h           |    1 +
 .../gpu/drm/amd/include/asic_reg/smu/smu_7_1_3_d.h | 1246 ++++
 .../drm/amd/include/asic_reg/smu/smu_7_1_3_enum.h  | 1282 +++++
 .../amd/include/asic_reg/smu/smu_7_1_3_sh_mask.h   | 6080 ++++++++++++++++++++
 20 files changed, 10167 insertions(+), 2 deletions(-)
 create mode 100644 drivers/gpu/drm/amd/amdgpu/fiji_dpm.c
 create mode 100644 drivers/gpu/drm/amd/amdgpu/fiji_ppsmc.h
 create mode 100644 drivers/gpu/drm/amd/amdgpu/fiji_smc.c
 create mode 100644 drivers/gpu/drm/amd/amdgpu/fiji_smumgr.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/smu/smu_7_1_3_d.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/smu/smu_7_1_3_enum.h
 create mode 100644 drivers/gpu/drm/amd/include/asic_reg/smu/smu_7_1_3_sh_mask.h

-- 
1.8.3.1

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2015-08-03 17:58 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-03 17:58 [PATCH 00/11] Add Fiji Support Alex Deucher
2015-08-03 17:58 ` [PATCH 01/11] drm/amdgpu: Add Fiji DID 0x7300 common support Alex Deucher
2015-08-03 17:58 ` [PATCH 02/11] drm/amdgpu: Add Fiji support to the GMC 8.5 IP module Alex Deucher
2015-08-03 17:58 ` [PATCH 03/11] drm/amdgpu: Add Fiji support to IH module Alex Deucher
2015-08-03 17:58 ` [PATCH 04/11] drm/amdgpu: Add Fiji smu 7.1.3 headers (v2) Alex Deucher
2015-08-03 17:58 ` [PATCH 05/11] drm/amdgpu: Add Fiji support to SMC and DPM (v2) Alex Deucher
2015-08-03 17:58 ` [PATCH 06/11] drm/amdgpu: Add Fiji support to the DCE 10.0 IP module (v2) Alex Deucher
2015-08-03 17:58 ` [PATCH 07/11] drm/amdgpu: Add Fiji support to the GFX 8.0 " Alex Deucher
2015-08-03 17:58 ` [PATCH 08/11] drm/amdgpu: Add Fiji support to the SDMA 3.0 IP module Alex Deucher
2015-08-03 17:58 ` [PATCH 09/11] drm/amdgpu: Add Fiji support to the UVD 6.0 " Alex Deucher
2015-08-03 17:58 ` [PATCH 10/11] drm/amdgpu: add support for VCE 3.x on Fiji Alex Deucher
2015-08-03 17:58 ` [PATCH 11/11] drm/amdgpu: Enable the Fiji DID 0x7300 support Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox