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

drm/amdgpu: add amdgpu_umc_functions structure

This is common structure as UMC callback function

Signed-off-by: Hawking Zhang <Hawking.Zhang@amd.com>
Reviewed-by: Dennis Li <dennis.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Hawking Zhang and committed by
Alex Deucher
9e585a52 6501a771

+31
+2
drivers/gpu/drm/amd/amdgpu/amdgpu.h
··· 86 86 #include "amdgpu_smu.h" 87 87 #include "amdgpu_discovery.h" 88 88 #include "amdgpu_mes.h" 89 + #include "amdgpu_umc.h" 89 90 90 91 #define MAX_GPU_INSTANCE 16 91 92 ··· 968 967 969 968 const struct amdgpu_nbio_funcs *nbio_funcs; 970 969 const struct amdgpu_df_funcs *df_funcs; 970 + const struct amdgpu_umc_funcs *umc_funcs; 971 971 972 972 /* delayed work_func for deferring clockgating during resume */ 973 973 struct delayed_work delayed_init_work;
+29
drivers/gpu/drm/amd/amdgpu/amdgpu_umc.h
··· 1 + /* 2 + * Copyright (C) 2019 Advanced Micro Devices, Inc. 3 + * 4 + * Permission is hereby granted, free of charge, to any person obtaining a 5 + * copy of this software and associated documentation files (the "Software"), 6 + * to deal in the Software without restriction, including without limitation 7 + * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 + * and/or sell copies of the Software, and to permit persons to whom the 9 + * Software is furnished to do so, subject to the following conditions: 10 + * 11 + * The above copyright notice and this permission notice shall be included 12 + * in all copies or substantial portions of the Software. 13 + * 14 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 15 + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 + * THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 18 + * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 19 + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20 + */ 21 + #ifndef __AMDGPU_UMC_H__ 22 + #define __AMDGPU_UMC_H__ 23 + 24 + struct amdgpu_umc_funcs { 25 + void (*query_ras_error_count)(struct amdgpu_device *adev, 26 + void *ras_error_status); 27 + }; 28 + 29 + #endif