mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-08 07:38:10 +00:00
drm/amdgpu: add raven gpu_info support
Add support for parsing the gpu info table on raven. This is required to get the gpu config data for raven. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Tom St Denis <tom.stdenis@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
fbf09b6935
commit
2d2e5e7e53
1 changed files with 4 additions and 0 deletions
|
@ -55,6 +55,7 @@
|
||||||
#include <linux/firmware.h>
|
#include <linux/firmware.h>
|
||||||
|
|
||||||
MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
|
MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin");
|
||||||
|
MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin");
|
||||||
|
|
||||||
static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev);
|
static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev);
|
||||||
static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev);
|
static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev);
|
||||||
|
@ -1430,6 +1431,9 @@ static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
|
||||||
case CHIP_VEGA10:
|
case CHIP_VEGA10:
|
||||||
chip_name = "vega10";
|
chip_name = "vega10";
|
||||||
break;
|
break;
|
||||||
|
case CHIP_RAVEN:
|
||||||
|
chip_name = "raven";
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
|
snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name);
|
||||||
|
|
Loading…
Add table
Reference in a new issue