diff options
author | Marek Olšák <marek.olsak@amd.com> | 2016-04-28 14:32:44 +0200 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-05-11 19:51:15 +0200 |
commit | f84e63f2ffed8a12ba58a154dc17a5ed6d31d61d (patch) | |
tree | 6a2e5cf33348d8d3aaa393d49b238e6bf9ab4fc5 /drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | |
parent | drm/amd/powerplay: rewrite pp_sw_init to make code readable (diff) | |
download | linux-f84e63f2ffed8a12ba58a154dc17a5ed6d31d61d.tar.xz linux-f84e63f2ffed8a12ba58a154dc17a5ed6d31d61d.zip |
drm/amdgpu: fix TC cache flushing
TC_WB_ACTION must be set according to the docs
Signed-off-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-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_drv.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c index 1dab5f2b725b..0dee008bcc57 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c @@ -50,9 +50,11 @@ * KMS wrapper. * - 3.0.0 - initial driver * - 3.1.0 - allow reading more status registers (GRBM, SRBM, SDMA, CP) + * - 3.2.0 - GFX8: Uses EOP_TC_WB_ACTION_EN, so UMDs don't have to do the same + * at the end of IBs. */ #define KMS_DRIVER_MAJOR 3 -#define KMS_DRIVER_MINOR 1 +#define KMS_DRIVER_MINOR 2 #define KMS_DRIVER_PATCHLEVEL 0 int amdgpu_vram_limit = 0; |