aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/include
diff options
context:
space:
mode:
authorHuang Rui <ray.huang@amd.com>2016-06-19 11:55:14 -0400
committerAlex Deucher <alexander.deucher@amd.com>2016-07-15 12:33:10 -0400
commit340efe2898f6ad5a74bbbbf8002f1196ecf1a1bf (patch)
treeb79ecd9d296d163983cda844205883a36cded2ef /drivers/gpu/drm/amd/include
parent86a42f04d1b38c1196b9a90e4851995c4bf35a4e (diff)
drm/amdgpu: add ucode_start_address into cgs_firmware_info
The ucode_start_address would be used on powerplay of iceland. Signed-off-by: Huang Rui <ray.huang@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/include')
-rw-r--r--drivers/gpu/drm/amd/include/cgs_common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/include/cgs_common.h b/drivers/gpu/drm/amd/include/cgs_common.h
index 0c8c85d2a2a5..f32af2f2091a 100644
--- a/drivers/gpu/drm/amd/include/cgs_common.h
+++ b/drivers/gpu/drm/amd/include/cgs_common.h
@@ -160,6 +160,10 @@ struct cgs_firmware_info {
160 uint16_t feature_version; 160 uint16_t feature_version;
161 uint32_t image_size; 161 uint32_t image_size;
162 uint64_t mc_addr; 162 uint64_t mc_addr;
163
164 /* only for smc firmware */
165 uint32_t ucode_start_address;
166
163 void *kptr; 167 void *kptr;
164}; 168};
165 169