Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

+4 -1
+4 -1
drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h
··· 93 93 struct amdgpu_iv_entry { 94 94 unsigned client_id; 95 95 unsigned src_id; 96 - unsigned src_data[AMDGPU_IH_SRC_DATA_MAX_SIZE_DW]; 97 96 unsigned ring_id; 98 97 unsigned vm_id; 99 98 unsigned vm_id_src; 99 + uint64_t timestamp; 100 + unsigned timestamp_src; 100 101 unsigned pas_id; 102 + unsigned pasid_src; 103 + unsigned src_data[AMDGPU_IH_SRC_DATA_MAX_SIZE_DW]; 101 104 const uint32_t *iv_entry; 102 105 }; 103 106