From: Jack Xiao <[email protected]>

The newly added fields is to store mes firmware related information.

Signed-off-by: Jack Xiao <[email protected]>
Reviewed-by: Hawking Zhang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h 
b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h
index 788084310dd5..78fe49033543 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h
@@ -29,6 +29,22 @@ struct amdgpu_mes_funcs;
 struct amdgpu_mes {
        struct amdgpu_adev *adev;
 
+       const struct firmware           *fw;
+
+       /* mes ucode */
+       struct amdgpu_bo                *ucode_fw_obj;
+       uint64_t                        ucode_fw_gpu_addr;
+       uint32_t                        *ucode_fw_ptr;
+       uint32_t                        ucode_fw_version;
+       uint64_t                        uc_start_addr;
+
+       /* mes ucode data */
+       struct amdgpu_bo                *data_fw_obj;
+       uint64_t                        data_fw_gpu_addr;
+       uint32_t                        *data_fw_ptr;
+       uint32_t                        data_fw_version;
+       uint64_t                        data_start_addr;
+
        /* ip specific functions */
        struct amdgpu_mes_funcs *funcs;
 };
-- 
2.20.1

_______________________________________________
amd-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

Reply via email to