From bfc06b10dea5a85f64a0c7d12f2c9e748c71d756 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 21 Apr 2020 16:08:41 -0400 Subject: [PATCH] pan/bi: Structify TEX compact Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/bifrost/bifrost.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/panfrost/bifrost/bifrost.h b/src/panfrost/bifrost/bifrost.h index 38c85c8..89344ae 100644 --- a/src/panfrost/bifrost/bifrost.h +++ b/src/panfrost/bifrost/bifrost.h @@ -483,6 +483,18 @@ struct bifrost_dual_tex_ctrl { unsigned unk1 : 22; } __attribute__((packed)); +#define BIFROST_ADD_OP_TEX_COMPACT_F32 (0x0b000 >> 10) +#define BIFROST_ADD_OP_TEX_COMPACT_F16 (0x1b000 >> 10) + +struct bifrost_tex_compact { + unsigned src0 : 3; + unsigned src1 : 3; + unsigned tex_index : 3; + unsigned unknown : 1; + unsigned sampler_index : 3; + unsigned op : 7; +} __attribute__((packed)); + enum branch_bit_size { BR_SIZE_32 = 0, BR_SIZE_16XX = 1, -- 2.7.4