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: add UMSCH IP BLOCK TYPE definition

Add IP BLOCK TYPE definition for Multimedia User Mode Scheduler
which is a hardware scheduler for VCN and VPE workload.

Signed-off-by: Lang Yu <Lang.Yu@amd.com>
Reviewed-by: Leo Liu <leo.liu@amd.com>
Reviewed-by: Veerabadhran Gopalakrishnan <Veerabadhran.Gopalakrishnan@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Lang Yu and committed by
Alex Deucher
2cd1f65d 433c4dea

+2
+2
drivers/gpu/drm/amd/include/amd_shared.h
··· 83 83 * @AMD_IP_BLOCK_TYPE_VCN: Video Core/Codec Next 84 84 * @AMD_IP_BLOCK_TYPE_MES: Micro-Engine Scheduler 85 85 * @AMD_IP_BLOCK_TYPE_JPEG: JPEG Engine 86 + * @AMD_IP_BLOCK_TYPE_UMSCH_MM: User Mode Schduler for Multimedia 86 87 * @AMD_IP_BLOCK_TYPE_NUM: Total number of IP block types 87 88 */ 88 89 enum amd_ip_block_type { ··· 102 101 AMD_IP_BLOCK_TYPE_MES, 103 102 AMD_IP_BLOCK_TYPE_JPEG, 104 103 AMD_IP_BLOCK_TYPE_VPE, 104 + AMD_IP_BLOCK_TYPE_UMSCH_MM, 105 105 AMD_IP_BLOCK_TYPE_NUM, 106 106 }; 107 107