diff options
| author | 2018-12-17 18:23:27 +0800 | |
|---|---|---|
| committer | 2019-07-18 14:17:59 -0500 | |
| commit | 5e71e011ff84cd467a6c255e8ea8dcd77ec442ff (patch) | |
| tree | 9efcd83f4b9f02208eae4f5370493272f3550e2a /drivers/gpu/drm/amd/amdgpu/nv.c | |
| parent | drm/amdgpu/gfx10: fix programming of SC_HIZ_TILE_FIFO_SIZE field (diff) | |
| download | wireguard-linux-5e71e011ff84cd467a6c255e8ea8dcd77ec442ff.tar.xz wireguard-linux-5e71e011ff84cd467a6c255e8ea8dcd77ec442ff.zip | |
drm/amdgpu/soc15: add support for navi14
same as navi10
Signed-off-by: Xiaojie Yuan <xiaojie.yuan@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Jack Xiao <Jack.Xiao@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/nv.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/nv.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c index 9f67739165b9..dfc247cb44a8 100644 --- a/drivers/gpu/drm/amd/amdgpu/nv.c +++ b/drivers/gpu/drm/amd/amdgpu/nv.c @@ -559,6 +559,11 @@ static int nv_common_early_init(void *handle) AMD_PG_SUPPORT_ATHUB; adev->external_rev_id = adev->rev_id + 0x1; break; + case CHIP_NAVI14: + adev->cg_flags = 0; + adev->pg_flags = 0; + adev->external_rev_id = adev->rev_id + 0x1; /* ??? */ + break; default: /* FIXME: not supported yet */ return -EINVAL; @@ -751,6 +756,7 @@ static int nv_common_set_clockgating_state(void *handle, switch (adev->asic_type) { case CHIP_NAVI10: + case CHIP_NAVI14: adev->nbio_funcs->update_medium_grain_clock_gating(adev, state == AMD_CG_STATE_GATE ? true : false); adev->nbio_funcs->update_medium_grain_light_sleep(adev, |
