From 23620d183035b068fe7dbda99fdc629264ca2d9e Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 8 Apr 2020 19:05:57 -0400 Subject: [PATCH] panfrost: Pass compiler-appropriate options FMAs need to fuse for Bifrost. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/gallium/drivers/panfrost/pan_screen.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/panfrost/pan_screen.c b/src/gallium/drivers/panfrost/pan_screen.c index 0c40ff6..866c23a 100644 --- a/src/gallium/drivers/panfrost/pan_screen.c +++ b/src/gallium/drivers/panfrost/pan_screen.c @@ -52,6 +52,7 @@ #include "pan_context.h" #include "midgard/midgard_compile.h" +#include "bifrost/bifrost_compile.h" #include "panfrost-quirks.h" static const struct debug_named_value debug_options[] = { @@ -701,7 +702,10 @@ panfrost_screen_get_compiler_options(struct pipe_screen *pscreen, enum pipe_shader_ir ir, enum pipe_shader_type shader) { - return &midgard_nir_options; + if (pan_device(pscreen)->quirks & IS_BIFROST) + return &bifrost_nir_options; + else + return &midgard_nir_options; } struct pipe_screen * -- 2.7.4