diff options
author | Marek Olšák <[email protected]> | 2017-05-13 00:40:34 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-06-22 01:51:02 +0200 |
commit | c66fc618cca2c0a1caf9f56f3dfbbdc1d95d0e8c (patch) | |
tree | 75abb859410e6036aead04851cc91a221b0c7d36 /src/gallium | |
parent | d7141d8bc0d534a1a79a2285ac6cda3838ca872e (diff) |
radeonsi/gfx9: enable the constant engine
I think this kernel commit fixes it:
drm/amdgpu:use FRAME_CNTL for new GFX ucode
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pipe.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index d2ba8df00db..a4f3c2d6149 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -204,10 +204,7 @@ static struct pipe_context *si_create_context(struct pipe_screen *screen, sscreen->b.chip_class != SI && /* These can't use CE due to a power gating bug in the kernel. */ sscreen->b.family != CHIP_CARRIZO && - sscreen->b.family != CHIP_STONEY && - /* Some CE bug is causing green screen corruption w/ MPV video - * playback and occasional corruption w/ 3D. */ - sscreen->b.chip_class != GFX9) { + sscreen->b.family != CHIP_STONEY) { sctx->ce_ib = ws->cs_add_const_ib(sctx->b.gfx.cs); if (!sctx->ce_ib) goto fail; |