diff options
| author | Josip Pavic <[email protected]> | 2023-12-01 06:25:04 -0700 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-12-06 15:22:33 -0500 |
| commit | ab779466166348eecf17d20f620aa9a47965c934 (patch) | |
| tree | 58703162878868b6a7429ff1787b95cbd290b9c2 /drivers/gpu/drm/amd/display/dmub/src | |
| parent | d5df648ec830cfd775bdacb3a3640c1e16de90f2 (diff) | |
drm/amd/display: Increase scratch buffer size
[Why]
Larger data blocks are expected to be transferred between driver and FW
in the future.
[How]
Embiggen the scratch buffer to a cromulent size.
Tested-by: Daniel Wheeler <[email protected]>
Reviewed-by: Nicholas Kazlauskas <[email protected]>
Acked-by: Rodrigo Siqueira <[email protected]>
Signed-off-by: Josip Pavic <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dmub/src')
| -rw-r--r-- | drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c b/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c index 38360adc53d9..a329a6ecf4dd 100644 --- a/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c +++ b/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c @@ -64,7 +64,7 @@ /* Default scratch mem size. */ -#define DMUB_SCRATCH_MEM_SIZE (256) +#define DMUB_SCRATCH_MEM_SIZE (1024) /* Number of windows in use. */ #define DMUB_NUM_WINDOWS (DMUB_WINDOW_TOTAL) |