diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2017-03-03 23:08:30 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-03-30 06:54:36 +0300 |
commit | 614dea315fceee86384f539064a30329961579b0 (patch) | |
tree | 59e0e65791b3417c39156d5fe2b4a1c66e256127 /drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h | |
parent | be34d3bfe35d108c32b7e5b03ca6fbb5917e962d (diff) | |
download | linux-614dea315fceee86384f539064a30329961579b0.tar.xz |
drm/amdgpu: update IH IV ring entry for soc-15
Reflect the new format on soc-15 asics.
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h index 043620dfdacb..a3da1a122fc8 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h @@ -93,11 +93,14 @@ struct amdgpu_ih_ring { struct amdgpu_iv_entry { unsigned client_id; unsigned src_id; - unsigned src_data[AMDGPU_IH_SRC_DATA_MAX_SIZE_DW]; unsigned ring_id; unsigned vm_id; unsigned vm_id_src; + uint64_t timestamp; + unsigned timestamp_src; unsigned pas_id; + unsigned pasid_src; + unsigned src_data[AMDGPU_IH_SRC_DATA_MAX_SIZE_DW]; const uint32_t *iv_entry; }; |