aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu.h
diff options
context:
space:
mode:
authorHawking Zhang <Hawking.Zhang@amd.com>2017-06-09 10:30:52 -0400
committerAlex Deucher <alexander.deucher@amd.com>2017-06-15 11:50:22 -0400
commit51fd0370677733785b1f5f31057a12738386ee25 (patch)
treefd9696b670e205726ec4695c18554801082b7f8c /drivers/gpu/drm/amd/amdgpu/amdgpu.h
parentd0c55cdf4fc02483a4851f86e3f010a061d8c9cc (diff)
drm/amdgpu: add new member in gpu_info fw
Signed-off-by: Hawking Zhang <Hawking.Zhang@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu.h')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
index e7aa30463210..c26761f0e05e 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
@@ -1028,7 +1028,10 @@ struct amdgpu_gfx_config {
1028struct amdgpu_cu_info { 1028struct amdgpu_cu_info {
1029 uint32_t number; /* total active CU number */ 1029 uint32_t number; /* total active CU number */
1030 uint32_t ao_cu_mask; 1030 uint32_t ao_cu_mask;
1031 uint32_t max_waves_per_simd;
1031 uint32_t wave_front_size; 1032 uint32_t wave_front_size;
1033 uint32_t max_scratch_slots_per_cu;
1034 uint32_t lds_size;
1032 uint32_t bitmap[4][4]; 1035 uint32_t bitmap[4][4];
1033}; 1036};
1034 1037