pan/bi: Fix outmod/roundmode flip
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Wed, 1 Apr 2020 02:18:03 +0000 (22:18 -0400)
committerMarge Bot <eric+marge@anholt.net>
Wed, 1 Apr 2020 02:25:05 +0000 (02:25 +0000)
I misread the disassembler, the fields are in the other order.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4396>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4396>

src/panfrost/bifrost/bifrost.h

index 19d284e555b1882716486c93a359211cfbc2a135..74718eaa316d07ad631457318191f20c1172a9e2 100644 (file)
@@ -204,8 +204,8 @@ struct bifrost_fma_add {
         unsigned src1_neg : 1;
         unsigned unk : 3;
         unsigned src0_abs : 1;
-        enum bifrost_outmod outmod : 2;
         enum bifrost_roundmode roundmode : 2;
+        enum bifrost_outmod outmod : 2;
         unsigned op : 6;
 } __attribute__((packed));
 
@@ -222,9 +222,9 @@ struct bifrost_fma_add_minmax16 {
         unsigned src1_neg : 1;
         unsigned src0_swizzle : 2;
         unsigned src1_swizzle : 2;
+        unsigned mode : 2;
         enum bifrost_outmod outmod : 2;
         /* roundmode for add, min/max mode for min/max */
-        unsigned mode : 2;
         unsigned op : 6;
 } __attribute__((packed));