pan/mdg: Fix discard encoding
[mesa.git] / src / panfrost / lib / pan_texture.h
1 /*
2 * Copyright (C) 2008 VMware, Inc.
3 * Copyright (C) 2014 Broadcom
4 * Copyright (C) 2018-2019 Alyssa Rosenzweig
5 * Copyright (C) 2019-2020 Collabora, Ltd.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 *
26 */
27
28 #ifndef __PAN_TEXTURE_H
29 #define __PAN_TEXTURE_H
30
31 #include <stdbool.h>
32 #include "drm-uapi/drm_fourcc.h"
33 #include "util/format/u_format.h"
34 #include "compiler/shader_enums.h"
35 #include "midgard_pack.h"
36 #include "pan_bo.h"
37
38 #define PAN_MODIFIER_COUNT 4
39 extern uint64_t pan_best_modifiers[PAN_MODIFIER_COUNT];
40
41 struct panfrost_slice {
42 unsigned offset;
43 unsigned stride;
44 unsigned size0;
45
46 /* If there is a header preceding each slice, how big is
47 * that header? Used for AFBC */
48 unsigned header_size;
49
50 /* If checksumming is enabled following the slice, what
51 * is its offset/stride? */
52 unsigned checksum_offset;
53 unsigned checksum_stride;
54 struct panfrost_bo *checksum_bo;
55
56 /* Has anything been written to this slice? */
57 bool initialized;
58 };
59
60 struct pan_image {
61 /* Format and size */
62 uint16_t width0, height0, depth0, array_size;
63 enum pipe_format format;
64 enum mali_texture_dimension dim;
65 unsigned first_level, last_level;
66 unsigned first_layer, last_layer;
67 unsigned nr_samples;
68 struct panfrost_bo *bo;
69 struct panfrost_slice *slices;
70 unsigned cubemap_stride;
71 uint64_t modifier;
72 };
73
74 unsigned
75 panfrost_compute_checksum_size(
76 struct panfrost_slice *slice,
77 unsigned width,
78 unsigned height);
79
80 /* AFBC */
81
82 bool
83 panfrost_format_supports_afbc(enum pipe_format format);
84
85 unsigned
86 panfrost_afbc_header_size(unsigned width, unsigned height);
87
88 bool
89 panfrost_afbc_can_ytr(enum pipe_format format);
90
91 unsigned
92 panfrost_estimate_texture_payload_size(
93 unsigned first_level, unsigned last_level,
94 unsigned first_layer, unsigned last_layer,
95 unsigned nr_samples,
96 enum mali_texture_dimension dim, uint64_t modifier);
97
98 void
99 panfrost_new_texture(
100 void *out,
101 uint16_t width, uint16_t height,
102 uint16_t depth, uint16_t array_size,
103 enum pipe_format format,
104 enum mali_texture_dimension dim,
105 uint64_t modifier,
106 unsigned first_level, unsigned last_level,
107 unsigned first_layer, unsigned last_layer,
108 unsigned nr_samples,
109 unsigned cube_stride,
110 unsigned swizzle,
111 mali_ptr base,
112 struct panfrost_slice *slices);
113
114 void
115 panfrost_new_texture_bifrost(
116 struct mali_bifrost_texture_packed *out,
117 uint16_t width, uint16_t height,
118 uint16_t depth, uint16_t array_size,
119 enum pipe_format format,
120 enum mali_texture_dimension dim,
121 uint64_t modifier,
122 unsigned first_level, unsigned last_level,
123 unsigned first_layer, unsigned last_layer,
124 unsigned nr_samples,
125 unsigned cube_stride,
126 unsigned swizzle,
127 mali_ptr base,
128 struct panfrost_slice *slices,
129 struct panfrost_bo *payload);
130
131
132 unsigned
133 panfrost_get_layer_stride(struct panfrost_slice *slices, bool is_3d, unsigned cube_stride, unsigned level);
134
135 unsigned
136 panfrost_texture_offset(struct panfrost_slice *slices, bool is_3d, unsigned cube_stride, unsigned level, unsigned face, unsigned sample);
137
138 /* Formats */
139
140 struct panfrost_format {
141 enum mali_format hw;
142 unsigned bind;
143 };
144
145 extern struct panfrost_format panfrost_pipe_format_table[PIPE_FORMAT_COUNT];
146
147 bool
148 panfrost_is_z24s8_variant(enum pipe_format fmt);
149
150 unsigned
151 panfrost_translate_swizzle_4(const unsigned char swizzle[4]);
152
153 void
154 panfrost_invert_swizzle(const unsigned char *in, unsigned char *out);
155
156 static inline unsigned
157 panfrost_get_default_swizzle(unsigned components)
158 {
159 switch (components) {
160 case 1:
161 return (MALI_CHANNEL_R << 0) | (MALI_CHANNEL_0 << 3) |
162 (MALI_CHANNEL_0 << 6) | (MALI_CHANNEL_1 << 9);
163 case 2:
164 return (MALI_CHANNEL_R << 0) | (MALI_CHANNEL_G << 3) |
165 (MALI_CHANNEL_0 << 6) | (MALI_CHANNEL_1 << 9);
166 case 3:
167 return (MALI_CHANNEL_R << 0) | (MALI_CHANNEL_G << 3) |
168 (MALI_CHANNEL_B << 6) | (MALI_CHANNEL_1 << 9);
169 case 4:
170 return (MALI_CHANNEL_R << 0) | (MALI_CHANNEL_G << 3) |
171 (MALI_CHANNEL_B << 6) | (MALI_CHANNEL_A << 9);
172 default:
173 unreachable("Invalid number of components");
174 }
175 }
176
177 static inline unsigned
178 panfrost_bifrost_swizzle(unsigned components)
179 {
180 /* Set all components to 0 and force w if needed */
181 return components < 4 ? 0x10 : 0x00;
182 }
183
184 enum mali_format
185 panfrost_format_to_bifrost_blend(const struct util_format_description *desc);
186
187 struct pan_pool;
188 struct pan_scoreboard;
189
190 void
191 panfrost_init_blit_shaders(struct panfrost_device *dev);
192
193 void
194 panfrost_load_midg(
195 struct pan_pool *pool,
196 struct pan_scoreboard *scoreboard,
197 mali_ptr blend_shader,
198 mali_ptr fbd,
199 mali_ptr coordinates, unsigned vertex_count,
200 struct pan_image *image,
201 unsigned loc);
202
203 /* DRM modifier helper */
204
205 #define drm_is_afbc(mod) \
206 ((mod >> 52) == (DRM_FORMAT_MOD_ARM_TYPE_AFBC | \
207 (DRM_FORMAT_MOD_VENDOR_ARM << 4)))
208
209 #endif