aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/panfrost/bifrost/bifrost.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/panfrost/bifrost/bifrost.h b/src/panfrost/bifrost/bifrost.h
index 1c06968d70a..045295b6965 100644
--- a/src/panfrost/bifrost/bifrost.h
+++ b/src/panfrost/bifrost/bifrost.h
@@ -103,6 +103,12 @@ struct bifrost_fma_inst {
unsigned op : 20;
} __attribute__((packed));
+struct bifrost_fma_2src {
+ unsigned src0 : 3;
+ unsigned src1 : 3;
+ unsigned op : 17;
+} __attribute__((packed));
+
#define BIFROST_ADD_OP_BLEND (0x1952c)
struct bifrost_add_inst {