mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:44:45 +01:00
drm/amdgpu: add support for sdma v7_1
Add support for SDMA v7.1.0 ip block. Signed-off-by: Likun Gao <Likun.Gao@amd.com> Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
25140983ef
commit
af441be8b7
1 changed files with 4 additions and 0 deletions
|
|
@ -83,6 +83,7 @@
|
|||
#include "sdma_v5_2.h"
|
||||
#include "sdma_v6_0.h"
|
||||
#include "sdma_v7_0.h"
|
||||
#include "sdma_v7_1.h"
|
||||
#include "lsdma_v6_0.h"
|
||||
#include "lsdma_v7_0.h"
|
||||
#include "vcn_v2_0.h"
|
||||
|
|
@ -2417,6 +2418,9 @@ static int amdgpu_discovery_set_sdma_ip_blocks(struct amdgpu_device *adev)
|
|||
case IP_VERSION(7, 0, 1):
|
||||
amdgpu_device_ip_block_add(adev, &sdma_v7_0_ip_block);
|
||||
break;
|
||||
case IP_VERSION(7, 1, 0):
|
||||
amdgpu_device_ip_block_add(adev, &sdma_v7_1_ip_block);
|
||||
break;
|
||||
default:
|
||||
dev_err(adev->dev,
|
||||
"Failed to add sdma ip block(SDMA0_HWIP:0x%x)\n",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue