panfrost: Respect modifiers in resource management
[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 "panfrost-job.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_type type;
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 /* mali_texture_descriptor */
89
90 unsigned
91 panfrost_estimate_texture_payload_size(
92 unsigned first_level, unsigned last_level,
93 unsigned first_layer, unsigned last_layer,
94 unsigned nr_samples,
95 enum mali_texture_type type, uint64_t modifier);
96
97 void
98 panfrost_new_texture(
99 void *out,
100 uint16_t width, uint16_t height,
101 uint16_t depth, uint16_t array_size,
102 enum pipe_format format,
103 enum mali_texture_type type,
104 uint64_t modifier,
105 unsigned first_level, unsigned last_level,
106 unsigned first_layer, unsigned last_layer,
107 unsigned nr_samples,
108 unsigned cube_stride,
109 unsigned swizzle,
110 mali_ptr base,
111 struct panfrost_slice *slices);
112
113 void
114 panfrost_new_texture_bifrost(
115 struct bifrost_texture_descriptor *descriptor,
116 uint16_t width, uint16_t height,
117 uint16_t depth, uint16_t array_size,
118 enum pipe_format format,
119 enum mali_texture_type type,
120 uint64_t modifier,
121 unsigned first_level, unsigned last_level,
122 unsigned first_layer, unsigned last_layer,
123 unsigned nr_samples,
124 unsigned cube_stride,
125 unsigned swizzle,
126 mali_ptr base,
127 struct panfrost_slice *slices,
128 struct panfrost_bo *payload);
129
130
131 unsigned
132 panfrost_get_layer_stride(struct panfrost_slice *slices, bool is_3d, unsigned cube_stride, unsigned level);
133
134 unsigned
135 panfrost_texture_offset(struct panfrost_slice *slices, bool is_3d, unsigned cube_stride, unsigned level, unsigned face, unsigned sample);
136
137 /* Formats */
138
139 struct panfrost_format {
140 enum mali_format hw;
141 unsigned bind;
142 };
143
144 extern struct panfrost_format panfrost_pipe_format_table[PIPE_FORMAT_COUNT];
145
146 bool
147 panfrost_is_z24s8_variant(enum pipe_format fmt);
148
149 unsigned
150 panfrost_translate_swizzle_4(const unsigned char swizzle[4]);
151
152 void
153 panfrost_invert_swizzle(const unsigned char *in, unsigned char *out);
154
155 static inline unsigned
156 panfrost_get_default_swizzle(unsigned components)
157 {
158 switch (components) {
159 case 1:
160 return (MALI_CHANNEL_RED << 0) | (MALI_CHANNEL_ZERO << 3) |
161 (MALI_CHANNEL_ZERO << 6) | (MALI_CHANNEL_ONE << 9);
162 case 2:
163 return (MALI_CHANNEL_RED << 0) | (MALI_CHANNEL_GREEN << 3) |
164 (MALI_CHANNEL_ZERO << 6) | (MALI_CHANNEL_ONE << 9);
165 case 3:
166 return (MALI_CHANNEL_RED << 0) | (MALI_CHANNEL_GREEN << 3) |
167 (MALI_CHANNEL_BLUE << 6) | (MALI_CHANNEL_ONE << 9);
168 case 4:
169 return (MALI_CHANNEL_RED << 0) | (MALI_CHANNEL_GREEN << 3) |
170 (MALI_CHANNEL_BLUE << 6) | (MALI_CHANNEL_ALPHA << 9);
171 default:
172 unreachable("Invalid number of components");
173 }
174 }
175
176 static inline unsigned
177 panfrost_bifrost_swizzle(unsigned components)
178 {
179 /* Set all components to 0 and force w if needed */
180 return components < 4 ? 0x10 : 0x00;
181 }
182
183 enum mali_format
184 panfrost_format_to_bifrost_blend(const struct util_format_description *desc);
185
186 struct pan_pool;
187 struct pan_scoreboard;
188
189 void
190 panfrost_init_blit_shaders(struct panfrost_device *dev);
191
192 void
193 panfrost_load_midg(
194 struct pan_pool *pool,
195 struct pan_scoreboard *scoreboard,
196 mali_ptr blend_shader,
197 mali_ptr fbd,
198 mali_ptr coordinates, unsigned vertex_count,
199 struct pan_image *image,
200 unsigned loc);
201
202 /* DRM modifier helper */
203
204 #define drm_is_afbc(mod) \
205 ((mod >> 52) == (DRM_FORMAT_MOD_ARM_TYPE_AFBC | \
206 (DRM_FORMAT_MOD_VENDOR_ARM << 4)))
207
208 #endif