aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.h
diff options
context:
space:
mode:
authorHuang Rui <ray.huang@amd.com>2018-12-14 04:09:08 -0500
committerAlex Deucher <alexander.deucher@amd.com>2019-03-19 16:03:55 -0400
commitae2e20136417f58d37a37c747cb6e12a2650bbd5 (patch)
tree003cf08c71f31f831579dbc717cab11d43792482 /drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.h
parente15da5a4b08a94ef63630c85197dabd1c8a88b36 (diff)
drm/amdgpu: move get_index_into_master_table macro into atomfirmware header
This patchs move get_index_into_master_table macro into atomfirmware header for future use on smu. Signed-off-by: Huang Rui <ray.huang@amd.com> Reviewed-by: Kevin Wang <Kevin1.Wang@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.h')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.h
index 20f158fd3b76..f8ea77d4e863 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.h
@@ -24,6 +24,8 @@
24#ifndef __AMDGPU_ATOMFIRMWARE_H__ 24#ifndef __AMDGPU_ATOMFIRMWARE_H__
25#define __AMDGPU_ATOMFIRMWARE_H__ 25#define __AMDGPU_ATOMFIRMWARE_H__
26 26
27#define get_index_into_master_table(master_table, table_name) (offsetof(struct master_table, table_name) / sizeof(uint16_t))
28
27bool amdgpu_atomfirmware_gpu_supports_virtualization(struct amdgpu_device *adev); 29bool amdgpu_atomfirmware_gpu_supports_virtualization(struct amdgpu_device *adev);
28void amdgpu_atomfirmware_scratch_regs_init(struct amdgpu_device *adev); 30void amdgpu_atomfirmware_scratch_regs_init(struct amdgpu_device *adev);
29int amdgpu_atomfirmware_allocate_fb_scratch(struct amdgpu_device *adev); 31int amdgpu_atomfirmware_allocate_fb_scratch(struct amdgpu_device *adev);