drm/amdgpu: Add initial VI support
authorAlex Deucher <alexander.deucher@amd.com>
Mon, 20 Apr 2015 21:31:14 +0000 (17:31 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 4 Jun 2015 01:03:17 +0000 (21:03 -0400)
commitaaa36a976bbb9b02a54c087ff390c0bad1d18e3e
tree105be3c06ef33c39e6934801d386847950d4ebf9
parenta2e73f56fa6282481927ec43aa9362c03c2e2104
drm/amdgpu: Add initial VI support

This adds initial support for VI asics.  This
includes Iceland, Tonga, and Carrizo.  Our inital
focus as been Carrizo, so there are still gaps in
support for Tonga and Iceland, notably power
management.

Acked-by: Christian König <christian.koenig@amd.com>
Acked-by: Jammy Zhou <Jammy.Zhou@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
49 files changed:
drivers/gpu/drm/amd/amdgpu/Makefile
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
drivers/gpu/drm/amd/amdgpu/clearstate_vi.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/cz_dpm.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/cz_dpm.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/cz_ih.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/cz_ih.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/cz_ppsmc.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/cz_smc.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/cz_smumgr.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/dce_v10_0.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/dce_v10_0.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/dce_v11_0.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/dce_v11_0.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/gfx_v8_0.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/gmc_v8_0.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/gmc_v8_0.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/iceland_dpm.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/iceland_ih.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/iceland_ih.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/iceland_sdma_pkt_open.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/iceland_smc.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/iceland_smumgr.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/sdma_v2_4.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/sdma_v2_4.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/sdma_v3_0.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/sdma_v3_0.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/smu8.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/smu8_fusion.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/smu_ucode_xfer_cz.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/smu_ucode_xfer_vi.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/tonga_dpm.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/tonga_ih.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/tonga_ih.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/tonga_ppsmc.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/tonga_sdma_pkt_open.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/tonga_smc.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/tonga_smumgr.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/uvd_v5_0.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/uvd_v5_0.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/uvd_v6_0.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/vce_v3_0.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/vce_v3_0.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/vi.c [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/vi.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/vi_dpm.h [new file with mode: 0644]
drivers/gpu/drm/amd/amdgpu/vid.h [new file with mode: 0644]