diff options
author | Lijo Lazar <lijo.lazar@amd.com> | 2023-10-06 10:27:20 +0530 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2023-10-13 10:59:16 -0400 |
commit | 558fcb7d1157a902c5ca880289e78d121fc3a484 (patch) | |
tree | 17ba14525b741912df7f26dbf1ab17df75244c8e | |
parent | 915414d09640bd2270b7e8f9fd3eaacc366c91b2 (diff) | |
download | linux-558fcb7d1157a902c5ca880289e78d121fc3a484.tar.gz linux-558fcb7d1157a902c5ca880289e78d121fc3a484.tar.bz2 linux-558fcb7d1157a902c5ca880289e78d121fc3a484.zip |
drm/amdgpu: Increase IP discovery region size
IP discovery region has increased to > 8K on some SOCs.Maximum reserve
size is upto 12K, but not used. For now increase to 10K.
Signed-off-by: Lijo Lazar <lijo.lazar@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.h index 3a2f347bd50d..4d03cd5b3410 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.h @@ -24,7 +24,7 @@ #ifndef __AMDGPU_DISCOVERY__ #define __AMDGPU_DISCOVERY__ -#define DISCOVERY_TMR_SIZE (8 << 10) +#define DISCOVERY_TMR_SIZE (10 << 10) #define DISCOVERY_TMR_OFFSET (64 << 10) void amdgpu_discovery_fini(struct amdgpu_device *adev); |