diff options
author | Chengming Gui <[email protected]> | 2020-10-13 16:46:21 +0800 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2021-05-19 22:40:14 -0400 |
commit | aa2caa2ad6b88a31ccefa50518d130a99afffba0 (patch) | |
tree | 0ab0c3e3ea5e6a1ab1ca651bcf50eeadaff0eca3 | |
parent | ece6fb068d6952811434c921a7b2a7a7e13a54ac (diff) |
drm/amd/amdgpu: add common ip block for beige_goby
Same as dimgrey_cavefish
v2: fix comments typo
Signed-off-by: Chengming Gui <[email protected]>
Reviewed-by: Hawking Zhang <[email protected]>
Reviewed-by: Tao Zhou <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/nv.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c index 40abc029d317..8efcc38ac379 100644 --- a/drivers/gpu/drm/amd/amdgpu/nv.c +++ b/drivers/gpu/drm/amd/amdgpu/nv.c @@ -951,6 +951,9 @@ int nv_set_ip_blocks(struct amdgpu_device *adev) amdgpu_device_ip_block_add(adev, &vcn_v3_0_ip_block); amdgpu_device_ip_block_add(adev, &jpeg_v3_0_ip_block); break; + case CHIP_BEIGE_GOBY: + amdgpu_device_ip_block_add(adev, &nv_common_ip_block); + break; default: return -EINVAL; } |