radv: Disable linear tiled compressed textures.
[mesa.git] / src / amd / vulkan / radv_formats.c
1 /*
2 * Copyright © 2016 Red Hat.
3 * Copyright © 2016 Bas Nieuwenhuizen
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 */
24
25 #include "radv_private.h"
26
27 #include "vk_format.h"
28 #include "sid.h"
29
30 #include "vk_util.h"
31
32 #include "util/u_half.h"
33 #include "util/format_srgb.h"
34 #include "util/format_r11g11b10f.h"
35
36 uint32_t radv_translate_buffer_dataformat(const struct vk_format_description *desc,
37 int first_non_void)
38 {
39 unsigned type;
40 int i;
41
42 assert(desc->layout != VK_FORMAT_LAYOUT_MULTIPLANE);
43
44 if (desc->format == VK_FORMAT_B10G11R11_UFLOAT_PACK32)
45 return V_008F0C_BUF_DATA_FORMAT_10_11_11;
46
47 if (first_non_void < 0)
48 return V_008F0C_BUF_DATA_FORMAT_INVALID;
49 type = desc->channel[first_non_void].type;
50
51 if (type == VK_FORMAT_TYPE_FIXED)
52 return V_008F0C_BUF_DATA_FORMAT_INVALID;
53 if (desc->nr_channels == 4 &&
54 desc->channel[0].size == 10 &&
55 desc->channel[1].size == 10 &&
56 desc->channel[2].size == 10 &&
57 desc->channel[3].size == 2)
58 return V_008F0C_BUF_DATA_FORMAT_2_10_10_10;
59
60 /* See whether the components are of the same size. */
61 for (i = 0; i < desc->nr_channels; i++) {
62 if (desc->channel[first_non_void].size != desc->channel[i].size)
63 return V_008F0C_BUF_DATA_FORMAT_INVALID;
64 }
65
66 switch (desc->channel[first_non_void].size) {
67 case 8:
68 switch (desc->nr_channels) {
69 case 1:
70 return V_008F0C_BUF_DATA_FORMAT_8;
71 case 2:
72 return V_008F0C_BUF_DATA_FORMAT_8_8;
73 case 4:
74 return V_008F0C_BUF_DATA_FORMAT_8_8_8_8;
75 }
76 break;
77 case 16:
78 switch (desc->nr_channels) {
79 case 1:
80 return V_008F0C_BUF_DATA_FORMAT_16;
81 case 2:
82 return V_008F0C_BUF_DATA_FORMAT_16_16;
83 case 4:
84 return V_008F0C_BUF_DATA_FORMAT_16_16_16_16;
85 }
86 break;
87 case 32:
88 /* From the Southern Islands ISA documentation about MTBUF:
89 * 'Memory reads of data in memory that is 32 or 64 bits do not
90 * undergo any format conversion.'
91 */
92 if (type != VK_FORMAT_TYPE_FLOAT &&
93 !desc->channel[first_non_void].pure_integer)
94 return V_008F0C_BUF_DATA_FORMAT_INVALID;
95
96 switch (desc->nr_channels) {
97 case 1:
98 return V_008F0C_BUF_DATA_FORMAT_32;
99 case 2:
100 return V_008F0C_BUF_DATA_FORMAT_32_32;
101 case 3:
102 return V_008F0C_BUF_DATA_FORMAT_32_32_32;
103 case 4:
104 return V_008F0C_BUF_DATA_FORMAT_32_32_32_32;
105 }
106 break;
107 }
108
109 return V_008F0C_BUF_DATA_FORMAT_INVALID;
110 }
111
112 uint32_t radv_translate_buffer_numformat(const struct vk_format_description *desc,
113 int first_non_void)
114 {
115 assert(desc->layout != VK_FORMAT_LAYOUT_MULTIPLANE);
116
117 if (desc->format == VK_FORMAT_B10G11R11_UFLOAT_PACK32)
118 return V_008F0C_BUF_NUM_FORMAT_FLOAT;
119
120 if (first_non_void < 0)
121 return ~0;
122
123 switch (desc->channel[first_non_void].type) {
124 case VK_FORMAT_TYPE_SIGNED:
125 if (desc->channel[first_non_void].normalized)
126 return V_008F0C_BUF_NUM_FORMAT_SNORM;
127 else if (desc->channel[first_non_void].pure_integer)
128 return V_008F0C_BUF_NUM_FORMAT_SINT;
129 else
130 return V_008F0C_BUF_NUM_FORMAT_SSCALED;
131 break;
132 case VK_FORMAT_TYPE_UNSIGNED:
133 if (desc->channel[first_non_void].normalized)
134 return V_008F0C_BUF_NUM_FORMAT_UNORM;
135 else if (desc->channel[first_non_void].pure_integer)
136 return V_008F0C_BUF_NUM_FORMAT_UINT;
137 else
138 return V_008F0C_BUF_NUM_FORMAT_USCALED;
139 break;
140 case VK_FORMAT_TYPE_FLOAT:
141 default:
142 return V_008F0C_BUF_NUM_FORMAT_FLOAT;
143 }
144 }
145
146 uint32_t radv_translate_tex_dataformat(VkFormat format,
147 const struct vk_format_description *desc,
148 int first_non_void)
149 {
150 bool uniform = true;
151 int i;
152
153 assert(vk_format_get_plane_count(format) == 1);
154
155 if (!desc)
156 return ~0;
157 /* Colorspace (return non-RGB formats directly). */
158 switch (desc->colorspace) {
159 /* Depth stencil formats */
160 case VK_FORMAT_COLORSPACE_ZS:
161 switch (format) {
162 case VK_FORMAT_D16_UNORM:
163 return V_008F14_IMG_DATA_FORMAT_16;
164 case VK_FORMAT_D24_UNORM_S8_UINT:
165 case VK_FORMAT_X8_D24_UNORM_PACK32:
166 return V_008F14_IMG_DATA_FORMAT_8_24;
167 case VK_FORMAT_S8_UINT:
168 return V_008F14_IMG_DATA_FORMAT_8;
169 case VK_FORMAT_D32_SFLOAT:
170 return V_008F14_IMG_DATA_FORMAT_32;
171 case VK_FORMAT_D32_SFLOAT_S8_UINT:
172 return V_008F14_IMG_DATA_FORMAT_X24_8_32;
173 default:
174 goto out_unknown;
175 }
176
177 case VK_FORMAT_COLORSPACE_YUV:
178 goto out_unknown; /* TODO */
179
180 case VK_FORMAT_COLORSPACE_SRGB:
181 if (desc->nr_channels != 4 && desc->nr_channels != 1)
182 goto out_unknown;
183 break;
184
185 default:
186 break;
187 }
188
189 if (desc->layout == VK_FORMAT_LAYOUT_SUBSAMPLED) {
190 switch(format) {
191 /* Don't ask me why this looks inverted. PAL does the same. */
192 case VK_FORMAT_G8B8G8R8_422_UNORM:
193 return V_008F14_IMG_DATA_FORMAT_BG_RG;
194 case VK_FORMAT_B8G8R8G8_422_UNORM:
195 return V_008F14_IMG_DATA_FORMAT_GB_GR;
196 default:
197 goto out_unknown;
198 }
199 }
200
201 if (desc->layout == VK_FORMAT_LAYOUT_RGTC) {
202 switch(format) {
203 case VK_FORMAT_BC4_UNORM_BLOCK:
204 case VK_FORMAT_BC4_SNORM_BLOCK:
205 return V_008F14_IMG_DATA_FORMAT_BC4;
206 case VK_FORMAT_BC5_UNORM_BLOCK:
207 case VK_FORMAT_BC5_SNORM_BLOCK:
208 return V_008F14_IMG_DATA_FORMAT_BC5;
209 default:
210 break;
211 }
212 }
213
214 if (desc->layout == VK_FORMAT_LAYOUT_S3TC) {
215 switch(format) {
216 case VK_FORMAT_BC1_RGB_UNORM_BLOCK:
217 case VK_FORMAT_BC1_RGB_SRGB_BLOCK:
218 case VK_FORMAT_BC1_RGBA_UNORM_BLOCK:
219 case VK_FORMAT_BC1_RGBA_SRGB_BLOCK:
220 return V_008F14_IMG_DATA_FORMAT_BC1;
221 case VK_FORMAT_BC2_UNORM_BLOCK:
222 case VK_FORMAT_BC2_SRGB_BLOCK:
223 return V_008F14_IMG_DATA_FORMAT_BC2;
224 case VK_FORMAT_BC3_UNORM_BLOCK:
225 case VK_FORMAT_BC3_SRGB_BLOCK:
226 return V_008F14_IMG_DATA_FORMAT_BC3;
227 default:
228 break;
229 }
230 }
231
232 if (desc->layout == VK_FORMAT_LAYOUT_BPTC) {
233 switch(format) {
234 case VK_FORMAT_BC6H_UFLOAT_BLOCK:
235 case VK_FORMAT_BC6H_SFLOAT_BLOCK:
236 return V_008F14_IMG_DATA_FORMAT_BC6;
237 case VK_FORMAT_BC7_UNORM_BLOCK:
238 case VK_FORMAT_BC7_SRGB_BLOCK:
239 return V_008F14_IMG_DATA_FORMAT_BC7;
240 default:
241 break;
242 }
243 }
244
245 if (desc->layout == VK_FORMAT_LAYOUT_ETC) {
246 switch (format) {
247 case VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK:
248 case VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK:
249 return V_008F14_IMG_DATA_FORMAT_ETC2_RGB;
250 case VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK:
251 case VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK:
252 return V_008F14_IMG_DATA_FORMAT_ETC2_RGBA1;
253 case VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK:
254 case VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK:
255 return V_008F14_IMG_DATA_FORMAT_ETC2_RGBA;
256 case VK_FORMAT_EAC_R11_UNORM_BLOCK:
257 case VK_FORMAT_EAC_R11_SNORM_BLOCK:
258 return V_008F14_IMG_DATA_FORMAT_ETC2_R;
259 case VK_FORMAT_EAC_R11G11_UNORM_BLOCK:
260 case VK_FORMAT_EAC_R11G11_SNORM_BLOCK:
261 return V_008F14_IMG_DATA_FORMAT_ETC2_RG;
262 default:
263 break;
264 }
265 }
266
267 if (format == VK_FORMAT_E5B9G9R9_UFLOAT_PACK32) {
268 return V_008F14_IMG_DATA_FORMAT_5_9_9_9;
269 } else if (format == VK_FORMAT_B10G11R11_UFLOAT_PACK32) {
270 return V_008F14_IMG_DATA_FORMAT_10_11_11;
271 }
272
273 /* R8G8Bx_SNORM - TODO CxV8U8 */
274
275 /* hw cannot support mixed formats (except depth/stencil, since only
276 * depth is read).*/
277 if (desc->is_mixed && desc->colorspace != VK_FORMAT_COLORSPACE_ZS)
278 goto out_unknown;
279
280 /* See whether the components are of the same size. */
281 for (i = 1; i < desc->nr_channels; i++) {
282 uniform = uniform && desc->channel[0].size == desc->channel[i].size;
283 }
284
285 /* Non-uniform formats. */
286 if (!uniform) {
287 switch(desc->nr_channels) {
288 case 3:
289 if (desc->channel[0].size == 5 &&
290 desc->channel[1].size == 6 &&
291 desc->channel[2].size == 5) {
292 return V_008F14_IMG_DATA_FORMAT_5_6_5;
293 }
294 goto out_unknown;
295 case 4:
296 if (desc->channel[0].size == 5 &&
297 desc->channel[1].size == 5 &&
298 desc->channel[2].size == 5 &&
299 desc->channel[3].size == 1) {
300 return V_008F14_IMG_DATA_FORMAT_1_5_5_5;
301 }
302 if (desc->channel[0].size == 1 &&
303 desc->channel[1].size == 5 &&
304 desc->channel[2].size == 5 &&
305 desc->channel[3].size == 5) {
306 return V_008F14_IMG_DATA_FORMAT_5_5_5_1;
307 }
308 if (desc->channel[0].size == 10 &&
309 desc->channel[1].size == 10 &&
310 desc->channel[2].size == 10 &&
311 desc->channel[3].size == 2) {
312 /* Closed VK driver does this also no 2/10/10/10 snorm */
313 if (desc->channel[0].type == VK_FORMAT_TYPE_SIGNED &&
314 desc->channel[0].normalized)
315 goto out_unknown;
316 return V_008F14_IMG_DATA_FORMAT_2_10_10_10;
317 }
318 goto out_unknown;
319 }
320 goto out_unknown;
321 }
322
323 if (first_non_void < 0 || first_non_void > 3)
324 goto out_unknown;
325
326 /* uniform formats */
327 switch (desc->channel[first_non_void].size) {
328 case 4:
329 switch (desc->nr_channels) {
330 #if 0 /* Not supported for render targets */
331 case 2:
332 return V_008F14_IMG_DATA_FORMAT_4_4;
333 #endif
334 case 4:
335 return V_008F14_IMG_DATA_FORMAT_4_4_4_4;
336 }
337 break;
338 case 8:
339 switch (desc->nr_channels) {
340 case 1:
341 return V_008F14_IMG_DATA_FORMAT_8;
342 case 2:
343 return V_008F14_IMG_DATA_FORMAT_8_8;
344 case 4:
345 return V_008F14_IMG_DATA_FORMAT_8_8_8_8;
346 }
347 break;
348 case 16:
349 switch (desc->nr_channels) {
350 case 1:
351 return V_008F14_IMG_DATA_FORMAT_16;
352 case 2:
353 return V_008F14_IMG_DATA_FORMAT_16_16;
354 case 4:
355 return V_008F14_IMG_DATA_FORMAT_16_16_16_16;
356 }
357 break;
358 case 32:
359 switch (desc->nr_channels) {
360 case 1:
361 return V_008F14_IMG_DATA_FORMAT_32;
362 case 2:
363 return V_008F14_IMG_DATA_FORMAT_32_32;
364 case 3:
365 return V_008F14_IMG_DATA_FORMAT_32_32_32;
366 case 4:
367 return V_008F14_IMG_DATA_FORMAT_32_32_32_32;
368 }
369 }
370
371 out_unknown:
372 /* R600_ERR("Unable to handle texformat %d %s\n", format, vk_format_name(format)); */
373 return ~0;
374 }
375
376 uint32_t radv_translate_tex_numformat(VkFormat format,
377 const struct vk_format_description *desc,
378 int first_non_void)
379 {
380 assert(vk_format_get_plane_count(format) == 1);
381
382 switch (format) {
383 case VK_FORMAT_D24_UNORM_S8_UINT:
384 return V_008F14_IMG_NUM_FORMAT_UNORM;
385 default:
386 if (first_non_void < 0) {
387 if (vk_format_is_compressed(format)) {
388 switch (format) {
389 case VK_FORMAT_BC1_RGB_SRGB_BLOCK:
390 case VK_FORMAT_BC1_RGBA_SRGB_BLOCK:
391 case VK_FORMAT_BC2_SRGB_BLOCK:
392 case VK_FORMAT_BC3_SRGB_BLOCK:
393 case VK_FORMAT_BC7_SRGB_BLOCK:
394 case VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK:
395 case VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK:
396 case VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK:
397 return V_008F14_IMG_NUM_FORMAT_SRGB;
398 case VK_FORMAT_BC4_SNORM_BLOCK:
399 case VK_FORMAT_BC5_SNORM_BLOCK:
400 case VK_FORMAT_BC6H_SFLOAT_BLOCK:
401 case VK_FORMAT_EAC_R11_SNORM_BLOCK:
402 case VK_FORMAT_EAC_R11G11_SNORM_BLOCK:
403 return V_008F14_IMG_NUM_FORMAT_SNORM;
404 default:
405 return V_008F14_IMG_NUM_FORMAT_UNORM;
406 }
407 } else if (desc->layout == VK_FORMAT_LAYOUT_SUBSAMPLED) {
408 return V_008F14_IMG_NUM_FORMAT_UNORM;
409 } else {
410 return V_008F14_IMG_NUM_FORMAT_FLOAT;
411 }
412 } else if (desc->colorspace == VK_FORMAT_COLORSPACE_SRGB) {
413 return V_008F14_IMG_NUM_FORMAT_SRGB;
414 } else {
415 switch (desc->channel[first_non_void].type) {
416 case VK_FORMAT_TYPE_FLOAT:
417 return V_008F14_IMG_NUM_FORMAT_FLOAT;
418 case VK_FORMAT_TYPE_SIGNED:
419 if (desc->channel[first_non_void].normalized)
420 return V_008F14_IMG_NUM_FORMAT_SNORM;
421 else if (desc->channel[first_non_void].pure_integer)
422 return V_008F14_IMG_NUM_FORMAT_SINT;
423 else
424 return V_008F14_IMG_NUM_FORMAT_SSCALED;
425 case VK_FORMAT_TYPE_UNSIGNED:
426 if (desc->channel[first_non_void].normalized)
427 return V_008F14_IMG_NUM_FORMAT_UNORM;
428 else if (desc->channel[first_non_void].pure_integer)
429 return V_008F14_IMG_NUM_FORMAT_UINT;
430 else
431 return V_008F14_IMG_NUM_FORMAT_USCALED;
432 default:
433 return V_008F14_IMG_NUM_FORMAT_UNORM;
434 }
435 }
436 }
437 }
438
439 uint32_t radv_translate_color_numformat(VkFormat format,
440 const struct vk_format_description *desc,
441 int first_non_void)
442 {
443 unsigned ntype;
444
445 assert(vk_format_get_plane_count(format) == 1);
446
447 if (first_non_void == -1 || desc->channel[first_non_void].type == VK_FORMAT_TYPE_FLOAT)
448 ntype = V_028C70_NUMBER_FLOAT;
449 else {
450 ntype = V_028C70_NUMBER_UNORM;
451 if (desc->colorspace == VK_FORMAT_COLORSPACE_SRGB)
452 ntype = V_028C70_NUMBER_SRGB;
453 else if (desc->channel[first_non_void].type == VK_FORMAT_TYPE_SIGNED) {
454 if (desc->channel[first_non_void].pure_integer) {
455 ntype = V_028C70_NUMBER_SINT;
456 } else if (desc->channel[first_non_void].normalized) {
457 ntype = V_028C70_NUMBER_SNORM;
458 } else
459 ntype = ~0u;
460 } else if (desc->channel[first_non_void].type == VK_FORMAT_TYPE_UNSIGNED) {
461 if (desc->channel[first_non_void].pure_integer) {
462 ntype = V_028C70_NUMBER_UINT;
463 } else if (desc->channel[first_non_void].normalized) {
464 ntype = V_028C70_NUMBER_UNORM;
465 } else
466 ntype = ~0u;
467 }
468 }
469 return ntype;
470 }
471
472 static bool radv_is_sampler_format_supported(VkFormat format, bool *linear_sampling)
473 {
474 const struct vk_format_description *desc = vk_format_description(format);
475 uint32_t num_format;
476 if (!desc || format == VK_FORMAT_UNDEFINED)
477 return false;
478 num_format = radv_translate_tex_numformat(format, desc,
479 vk_format_get_first_non_void_channel(format));
480
481 if (num_format == V_008F14_IMG_NUM_FORMAT_USCALED ||
482 num_format == V_008F14_IMG_NUM_FORMAT_SSCALED)
483 return false;
484
485 if (num_format == V_008F14_IMG_NUM_FORMAT_UNORM ||
486 num_format == V_008F14_IMG_NUM_FORMAT_SNORM ||
487 num_format == V_008F14_IMG_NUM_FORMAT_FLOAT ||
488 num_format == V_008F14_IMG_NUM_FORMAT_SRGB)
489 *linear_sampling = true;
490 else
491 *linear_sampling = false;
492 return radv_translate_tex_dataformat(format, vk_format_description(format),
493 vk_format_get_first_non_void_channel(format)) != ~0U;
494 }
495
496
497 static bool radv_is_storage_image_format_supported(struct radv_physical_device *physical_device,
498 VkFormat format)
499 {
500 const struct vk_format_description *desc = vk_format_description(format);
501 unsigned data_format, num_format;
502 if (!desc || format == VK_FORMAT_UNDEFINED)
503 return false;
504
505 data_format = radv_translate_tex_dataformat(format, desc,
506 vk_format_get_first_non_void_channel(format));
507 num_format = radv_translate_tex_numformat(format, desc,
508 vk_format_get_first_non_void_channel(format));
509
510 if(data_format == ~0 || num_format == ~0)
511 return false;
512
513 /* Extracted from the GCN3 ISA document. */
514 switch(num_format) {
515 case V_008F14_IMG_NUM_FORMAT_UNORM:
516 case V_008F14_IMG_NUM_FORMAT_SNORM:
517 case V_008F14_IMG_NUM_FORMAT_UINT:
518 case V_008F14_IMG_NUM_FORMAT_SINT:
519 case V_008F14_IMG_NUM_FORMAT_FLOAT:
520 break;
521 default:
522 return false;
523 }
524
525 switch(data_format) {
526 case V_008F14_IMG_DATA_FORMAT_8:
527 case V_008F14_IMG_DATA_FORMAT_16:
528 case V_008F14_IMG_DATA_FORMAT_8_8:
529 case V_008F14_IMG_DATA_FORMAT_32:
530 case V_008F14_IMG_DATA_FORMAT_16_16:
531 case V_008F14_IMG_DATA_FORMAT_10_11_11:
532 case V_008F14_IMG_DATA_FORMAT_11_11_10:
533 case V_008F14_IMG_DATA_FORMAT_10_10_10_2:
534 case V_008F14_IMG_DATA_FORMAT_2_10_10_10:
535 case V_008F14_IMG_DATA_FORMAT_8_8_8_8:
536 case V_008F14_IMG_DATA_FORMAT_32_32:
537 case V_008F14_IMG_DATA_FORMAT_16_16_16_16:
538 case V_008F14_IMG_DATA_FORMAT_32_32_32_32:
539 case V_008F14_IMG_DATA_FORMAT_5_6_5:
540 case V_008F14_IMG_DATA_FORMAT_1_5_5_5:
541 case V_008F14_IMG_DATA_FORMAT_5_5_5_1:
542 case V_008F14_IMG_DATA_FORMAT_4_4_4_4:
543 /* TODO: FMASK formats. */
544 return true;
545 default:
546 return false;
547 }
548 }
549
550 bool radv_is_buffer_format_supported(VkFormat format, bool *scaled)
551 {
552 const struct vk_format_description *desc = vk_format_description(format);
553 unsigned data_format, num_format;
554 if (!desc || format == VK_FORMAT_UNDEFINED)
555 return false;
556
557 data_format = radv_translate_buffer_dataformat(desc,
558 vk_format_get_first_non_void_channel(format));
559 num_format = radv_translate_buffer_numformat(desc,
560 vk_format_get_first_non_void_channel(format));
561
562 if (scaled)
563 *scaled = (num_format == V_008F0C_BUF_NUM_FORMAT_SSCALED) || (num_format == V_008F0C_BUF_NUM_FORMAT_USCALED);
564 return data_format != V_008F0C_BUF_DATA_FORMAT_INVALID &&
565 num_format != ~0;
566 }
567
568 bool radv_is_colorbuffer_format_supported(VkFormat format, bool *blendable)
569 {
570 const struct vk_format_description *desc = vk_format_description(format);
571 uint32_t color_format = radv_translate_colorformat(format);
572 uint32_t color_swap = radv_translate_colorswap(format, false);
573 uint32_t color_num_format = radv_translate_color_numformat(format,
574 desc,
575 vk_format_get_first_non_void_channel(format));
576
577 if (color_num_format == V_028C70_NUMBER_UINT || color_num_format == V_028C70_NUMBER_SINT ||
578 color_format == V_028C70_COLOR_8_24 || color_format == V_028C70_COLOR_24_8 ||
579 color_format == V_028C70_COLOR_X24_8_32_FLOAT) {
580 *blendable = false;
581 } else
582 *blendable = true;
583 return color_format != V_028C70_COLOR_INVALID &&
584 color_swap != ~0U &&
585 color_num_format != ~0;
586 }
587
588 static bool radv_is_zs_format_supported(VkFormat format)
589 {
590 return radv_translate_dbformat(format) != V_028040_Z_INVALID || format == VK_FORMAT_S8_UINT;
591 }
592
593 static bool radv_is_filter_minmax_format_supported(VkFormat format)
594 {
595 /* From the Vulkan spec 1.1.71:
596 *
597 * "The following formats must support the
598 * VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT_EXT feature with
599 * VK_IMAGE_TILING_OPTIMAL, if they support
600 * VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT."
601 */
602 /* TODO: enable more formats. */
603 switch (format) {
604 case VK_FORMAT_R8_UNORM:
605 case VK_FORMAT_R8_SNORM:
606 case VK_FORMAT_R16_UNORM:
607 case VK_FORMAT_R16_SNORM:
608 case VK_FORMAT_R16_SFLOAT:
609 case VK_FORMAT_R32_SFLOAT:
610 case VK_FORMAT_D16_UNORM:
611 case VK_FORMAT_X8_D24_UNORM_PACK32:
612 case VK_FORMAT_D32_SFLOAT:
613 case VK_FORMAT_D16_UNORM_S8_UINT:
614 case VK_FORMAT_D24_UNORM_S8_UINT:
615 case VK_FORMAT_D32_SFLOAT_S8_UINT:
616 return true;
617 default:
618 return false;
619 }
620 }
621
622 bool
623 radv_device_supports_etc(struct radv_physical_device *physical_device)
624 {
625 return physical_device->rad_info.family == CHIP_VEGA10 ||
626 physical_device->rad_info.family == CHIP_RAVEN ||
627 physical_device->rad_info.family == CHIP_STONEY;
628 }
629
630 static void
631 radv_physical_device_get_format_properties(struct radv_physical_device *physical_device,
632 VkFormat format,
633 VkFormatProperties *out_properties)
634 {
635 VkFormatFeatureFlags linear = 0, tiled = 0, buffer = 0;
636 const struct vk_format_description *desc = vk_format_description(format);
637 bool blendable;
638 bool scaled = false;
639 /* TODO: implement some software emulation of SUBSAMPLED formats. */
640 if (!desc || desc->layout == VK_FORMAT_LAYOUT_SUBSAMPLED) {
641 out_properties->linearTilingFeatures = linear;
642 out_properties->optimalTilingFeatures = tiled;
643 out_properties->bufferFeatures = buffer;
644 return;
645 }
646
647 if (desc->layout == VK_FORMAT_LAYOUT_ETC &&
648 !radv_device_supports_etc(physical_device)) {
649 out_properties->linearTilingFeatures = linear;
650 out_properties->optimalTilingFeatures = tiled;
651 out_properties->bufferFeatures = buffer;
652 return;
653 }
654
655 if (desc->layout == VK_FORMAT_LAYOUT_MULTIPLANE ||
656 desc->layout == VK_FORMAT_LAYOUT_SUBSAMPLED) {
657 uint32_t tiling = VK_FORMAT_FEATURE_TRANSFER_SRC_BIT |
658 VK_FORMAT_FEATURE_TRANSFER_DST_BIT |
659 VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT |
660 VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT |
661 VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT;
662
663 /* The subsampled formats have no support for linear filters. */
664 if (desc->layout != VK_FORMAT_LAYOUT_SUBSAMPLED) {
665 tiling |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT;
666 }
667
668 /* Fails for unknown reasons with linear tiling & subsampled formats. */
669 out_properties->linearTilingFeatures = desc->layout == VK_FORMAT_LAYOUT_SUBSAMPLED ? 0 : tiling;
670 out_properties->optimalTilingFeatures = tiling;
671 out_properties->bufferFeatures = 0;
672 return;
673 }
674
675 if (radv_is_storage_image_format_supported(physical_device, format)) {
676 tiled |= VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT;
677 linear |= VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT;
678 }
679
680 if (radv_is_buffer_format_supported(format, &scaled)) {
681 buffer |= VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT;
682 if (!scaled)
683 buffer |= VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT |
684 VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT;
685 }
686
687 if (vk_format_is_depth_or_stencil(format)) {
688 if (radv_is_zs_format_supported(format)) {
689 tiled |= VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT;
690 tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT;
691 tiled |= VK_FORMAT_FEATURE_BLIT_SRC_BIT |
692 VK_FORMAT_FEATURE_BLIT_DST_BIT;
693 tiled |= VK_FORMAT_FEATURE_TRANSFER_SRC_BIT |
694 VK_FORMAT_FEATURE_TRANSFER_DST_BIT;
695
696 if (radv_is_filter_minmax_format_supported(format))
697 tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT_EXT;
698
699 /* Don't support blitting surfaces with depth/stencil. */
700 if (vk_format_is_depth(format) && vk_format_is_stencil(format))
701 tiled &= ~VK_FORMAT_FEATURE_BLIT_DST_BIT;
702
703 /* Don't support linear depth surfaces */
704 linear = 0;
705 }
706 } else {
707 bool linear_sampling;
708 if (radv_is_sampler_format_supported(format, &linear_sampling)) {
709 linear |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT |
710 VK_FORMAT_FEATURE_BLIT_SRC_BIT;
711 tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT |
712 VK_FORMAT_FEATURE_BLIT_SRC_BIT;
713
714 if (radv_is_filter_minmax_format_supported(format))
715 tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT_EXT;
716
717 if (linear_sampling) {
718 linear |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT;
719 tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT;
720 }
721
722 /* Don't support blitting for R32G32B32 formats. */
723 if (format == VK_FORMAT_R32G32B32_SFLOAT ||
724 format == VK_FORMAT_R32G32B32_UINT ||
725 format == VK_FORMAT_R32G32B32_SINT) {
726 linear &= ~VK_FORMAT_FEATURE_BLIT_SRC_BIT;
727 }
728 }
729 if (radv_is_colorbuffer_format_supported(format, &blendable)) {
730 linear |= VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT | VK_FORMAT_FEATURE_BLIT_DST_BIT;
731 tiled |= VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT | VK_FORMAT_FEATURE_BLIT_DST_BIT;
732 if (blendable) {
733 linear |= VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT;
734 tiled |= VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT;
735 }
736 }
737 if (tiled && !scaled) {
738 tiled |= VK_FORMAT_FEATURE_TRANSFER_SRC_BIT |
739 VK_FORMAT_FEATURE_TRANSFER_DST_BIT;
740 }
741
742 /* Tiled formatting does not support NPOT pixel sizes */
743 if (!util_is_power_of_two_or_zero(vk_format_get_blocksize(format)))
744 tiled = 0;
745 }
746
747 if (linear && !scaled) {
748 linear |= VK_FORMAT_FEATURE_TRANSFER_SRC_BIT |
749 VK_FORMAT_FEATURE_TRANSFER_DST_BIT;
750 }
751
752 if (format == VK_FORMAT_R32_UINT || format == VK_FORMAT_R32_SINT) {
753 buffer |= VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT;
754 linear |= VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT;
755 tiled |= VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT;
756 }
757
758 switch(format) {
759 case VK_FORMAT_A2R10G10B10_SNORM_PACK32:
760 case VK_FORMAT_A2B10G10R10_SNORM_PACK32:
761 case VK_FORMAT_A2R10G10B10_SSCALED_PACK32:
762 case VK_FORMAT_A2B10G10R10_SSCALED_PACK32:
763 case VK_FORMAT_A2R10G10B10_SINT_PACK32:
764 case VK_FORMAT_A2B10G10R10_SINT_PACK32:
765 if (physical_device->rad_info.chip_class <= GFX8 &&
766 physical_device->rad_info.family != CHIP_STONEY) {
767 buffer &= ~(VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT |
768 VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT);
769 linear = 0;
770 tiled = 0;
771 }
772 break;
773 default:
774 break;
775 }
776
777 /* addrlib does not support linear compressed textures. */
778 if (vk_format_is_compressed(format))
779 linear = 0;
780
781 out_properties->linearTilingFeatures = linear;
782 out_properties->optimalTilingFeatures = tiled;
783 out_properties->bufferFeatures = buffer;
784 }
785
786 uint32_t radv_translate_colorformat(VkFormat format)
787 {
788 const struct vk_format_description *desc = vk_format_description(format);
789
790 #define HAS_SIZE(x,y,z,w) \
791 (desc->channel[0].size == (x) && desc->channel[1].size == (y) && \
792 desc->channel[2].size == (z) && desc->channel[3].size == (w))
793
794 if (format == VK_FORMAT_B10G11R11_UFLOAT_PACK32) /* isn't plain */
795 return V_028C70_COLOR_10_11_11;
796
797 if (desc->layout != VK_FORMAT_LAYOUT_PLAIN)
798 return V_028C70_COLOR_INVALID;
799
800 /* hw cannot support mixed formats (except depth/stencil, since
801 * stencil is not written to). */
802 if (desc->is_mixed && desc->colorspace != VK_FORMAT_COLORSPACE_ZS)
803 return V_028C70_COLOR_INVALID;
804
805 switch (desc->nr_channels) {
806 case 1:
807 switch (desc->channel[0].size) {
808 case 8:
809 return V_028C70_COLOR_8;
810 case 16:
811 return V_028C70_COLOR_16;
812 case 32:
813 return V_028C70_COLOR_32;
814 }
815 break;
816 case 2:
817 if (desc->channel[0].size == desc->channel[1].size) {
818 switch (desc->channel[0].size) {
819 case 8:
820 return V_028C70_COLOR_8_8;
821 case 16:
822 return V_028C70_COLOR_16_16;
823 case 32:
824 return V_028C70_COLOR_32_32;
825 }
826 } else if (HAS_SIZE(8,24,0,0)) {
827 return V_028C70_COLOR_24_8;
828 } else if (HAS_SIZE(24,8,0,0)) {
829 return V_028C70_COLOR_8_24;
830 }
831 break;
832 case 3:
833 if (HAS_SIZE(5,6,5,0)) {
834 return V_028C70_COLOR_5_6_5;
835 } else if (HAS_SIZE(32,8,24,0)) {
836 return V_028C70_COLOR_X24_8_32_FLOAT;
837 }
838 break;
839 case 4:
840 if (desc->channel[0].size == desc->channel[1].size &&
841 desc->channel[0].size == desc->channel[2].size &&
842 desc->channel[0].size == desc->channel[3].size) {
843 switch (desc->channel[0].size) {
844 case 4:
845 return V_028C70_COLOR_4_4_4_4;
846 case 8:
847 return V_028C70_COLOR_8_8_8_8;
848 case 16:
849 return V_028C70_COLOR_16_16_16_16;
850 case 32:
851 return V_028C70_COLOR_32_32_32_32;
852 }
853 } else if (HAS_SIZE(5,5,5,1)) {
854 return V_028C70_COLOR_1_5_5_5;
855 } else if (HAS_SIZE(1,5,5,5)) {
856 return V_028C70_COLOR_5_5_5_1;
857 } else if (HAS_SIZE(10,10,10,2)) {
858 return V_028C70_COLOR_2_10_10_10;
859 }
860 break;
861 }
862 return V_028C70_COLOR_INVALID;
863 }
864
865 uint32_t radv_colorformat_endian_swap(uint32_t colorformat)
866 {
867 if (0/*SI_BIG_ENDIAN*/) {
868 switch(colorformat) {
869 /* 8-bit buffers. */
870 case V_028C70_COLOR_8:
871 return V_028C70_ENDIAN_NONE;
872
873 /* 16-bit buffers. */
874 case V_028C70_COLOR_5_6_5:
875 case V_028C70_COLOR_1_5_5_5:
876 case V_028C70_COLOR_4_4_4_4:
877 case V_028C70_COLOR_16:
878 case V_028C70_COLOR_8_8:
879 return V_028C70_ENDIAN_8IN16;
880
881 /* 32-bit buffers. */
882 case V_028C70_COLOR_8_8_8_8:
883 case V_028C70_COLOR_2_10_10_10:
884 case V_028C70_COLOR_8_24:
885 case V_028C70_COLOR_24_8:
886 case V_028C70_COLOR_16_16:
887 return V_028C70_ENDIAN_8IN32;
888
889 /* 64-bit buffers. */
890 case V_028C70_COLOR_16_16_16_16:
891 return V_028C70_ENDIAN_8IN16;
892
893 case V_028C70_COLOR_32_32:
894 return V_028C70_ENDIAN_8IN32;
895
896 /* 128-bit buffers. */
897 case V_028C70_COLOR_32_32_32_32:
898 return V_028C70_ENDIAN_8IN32;
899 default:
900 return V_028C70_ENDIAN_NONE; /* Unsupported. */
901 }
902 } else {
903 return V_028C70_ENDIAN_NONE;
904 }
905 }
906
907 uint32_t radv_translate_dbformat(VkFormat format)
908 {
909 switch (format) {
910 case VK_FORMAT_D16_UNORM:
911 case VK_FORMAT_D16_UNORM_S8_UINT:
912 return V_028040_Z_16;
913 case VK_FORMAT_D32_SFLOAT:
914 case VK_FORMAT_D32_SFLOAT_S8_UINT:
915 return V_028040_Z_32_FLOAT;
916 default:
917 return V_028040_Z_INVALID;
918 }
919 }
920
921 unsigned radv_translate_colorswap(VkFormat format, bool do_endian_swap)
922 {
923 const struct vk_format_description *desc = vk_format_description(format);
924
925 #define HAS_SWIZZLE(chan,swz) (desc->swizzle[chan] == VK_SWIZZLE_##swz)
926
927 if (format == VK_FORMAT_B10G11R11_UFLOAT_PACK32)
928 return V_028C70_SWAP_STD;
929
930 if (desc->layout != VK_FORMAT_LAYOUT_PLAIN)
931 return ~0U;
932
933 switch (desc->nr_channels) {
934 case 1:
935 if (HAS_SWIZZLE(0,X))
936 return V_028C70_SWAP_STD; /* X___ */
937 else if (HAS_SWIZZLE(3,X))
938 return V_028C70_SWAP_ALT_REV; /* ___X */
939 break;
940 case 2:
941 if ((HAS_SWIZZLE(0,X) && HAS_SWIZZLE(1,Y)) ||
942 (HAS_SWIZZLE(0,X) && HAS_SWIZZLE(1,NONE)) ||
943 (HAS_SWIZZLE(0,NONE) && HAS_SWIZZLE(1,Y)))
944 return V_028C70_SWAP_STD; /* XY__ */
945 else if ((HAS_SWIZZLE(0,Y) && HAS_SWIZZLE(1,X)) ||
946 (HAS_SWIZZLE(0,Y) && HAS_SWIZZLE(1,NONE)) ||
947 (HAS_SWIZZLE(0,NONE) && HAS_SWIZZLE(1,X)))
948 /* YX__ */
949 return (do_endian_swap ? V_028C70_SWAP_STD : V_028C70_SWAP_STD_REV);
950 else if (HAS_SWIZZLE(0,X) && HAS_SWIZZLE(3,Y))
951 return V_028C70_SWAP_ALT; /* X__Y */
952 else if (HAS_SWIZZLE(0,Y) && HAS_SWIZZLE(3,X))
953 return V_028C70_SWAP_ALT_REV; /* Y__X */
954 break;
955 case 3:
956 if (HAS_SWIZZLE(0,X))
957 return (do_endian_swap ? V_028C70_SWAP_STD_REV : V_028C70_SWAP_STD);
958 else if (HAS_SWIZZLE(0,Z))
959 return V_028C70_SWAP_STD_REV; /* ZYX */
960 break;
961 case 4:
962 /* check the middle channels, the 1st and 4th channel can be NONE */
963 if (HAS_SWIZZLE(1,Y) && HAS_SWIZZLE(2,Z)) {
964 return V_028C70_SWAP_STD; /* XYZW */
965 } else if (HAS_SWIZZLE(1,Z) && HAS_SWIZZLE(2,Y)) {
966 return V_028C70_SWAP_STD_REV; /* WZYX */
967 } else if (HAS_SWIZZLE(1,Y) && HAS_SWIZZLE(2,X)) {
968 return V_028C70_SWAP_ALT; /* ZYXW */
969 } else if (HAS_SWIZZLE(1,Z) && HAS_SWIZZLE(2,W)) {
970 /* YZWX */
971 if (desc->is_array)
972 return V_028C70_SWAP_ALT_REV;
973 else
974 return (do_endian_swap ? V_028C70_SWAP_ALT : V_028C70_SWAP_ALT_REV);
975 }
976 break;
977 }
978 return ~0U;
979 }
980
981 bool radv_format_pack_clear_color(VkFormat format,
982 uint32_t clear_vals[2],
983 VkClearColorValue *value)
984 {
985 const struct vk_format_description *desc = vk_format_description(format);
986
987 if (format == VK_FORMAT_B10G11R11_UFLOAT_PACK32) {
988 clear_vals[0] = float3_to_r11g11b10f(value->float32);
989 clear_vals[1] = 0;
990 return true;
991 }
992
993 if (desc->layout != VK_FORMAT_LAYOUT_PLAIN) {
994 fprintf(stderr, "failed to fast clear for non-plain format %d\n", format);
995 return false;
996 }
997
998 if (!util_is_power_of_two_or_zero(desc->block.bits)) {
999 fprintf(stderr, "failed to fast clear for NPOT format %d\n", format);
1000 return false;
1001 }
1002
1003 if (desc->block.bits > 64) {
1004 /*
1005 * We have a 128 bits format, check if the first 3 components are the same.
1006 * Every elements has to be 32 bits since we don't support 64-bit formats,
1007 * and we can skip swizzling checks as alpha always comes last for these and
1008 * we do not care about the rest as they have to be the same.
1009 */
1010 if (desc->channel[0].type == VK_FORMAT_TYPE_FLOAT) {
1011 if (value->float32[0] != value->float32[1] ||
1012 value->float32[0] != value->float32[2])
1013 return false;
1014 } else {
1015 if (value->uint32[0] != value->uint32[1] ||
1016 value->uint32[0] != value->uint32[2])
1017 return false;
1018 }
1019 clear_vals[0] = value->uint32[0];
1020 clear_vals[1] = value->uint32[3];
1021 return true;
1022 }
1023 uint64_t clear_val = 0;
1024
1025 for (unsigned c = 0; c < 4; ++c) {
1026 if (desc->swizzle[c] >= 4)
1027 continue;
1028
1029 const struct vk_format_channel_description *channel = &desc->channel[desc->swizzle[c]];
1030 assert(channel->size);
1031
1032 uint64_t v = 0;
1033 if (channel->pure_integer) {
1034 v = value->uint32[c] & ((1ULL << channel->size) - 1);
1035 } else if (channel->normalized) {
1036 if (channel->type == VK_FORMAT_TYPE_UNSIGNED &&
1037 desc->swizzle[c] < 3 &&
1038 desc->colorspace == VK_FORMAT_COLORSPACE_SRGB) {
1039 assert(channel->size == 8);
1040
1041 v = util_format_linear_float_to_srgb_8unorm(value->float32[c]);
1042 } else {
1043 float f = MIN2(value->float32[c], 1.0f);
1044
1045 if (channel->type == VK_FORMAT_TYPE_UNSIGNED) {
1046 f = MAX2(f, 0.0f) * ((1ULL << channel->size) - 1);
1047 } else {
1048 f = MAX2(f, -1.0f) * ((1ULL << (channel->size - 1)) - 1);
1049 }
1050
1051 /* The hardware rounds before conversion. */
1052 if (f > 0)
1053 f += 0.5f;
1054 else
1055 f -= 0.5f;
1056
1057 v = (uint64_t)f;
1058 }
1059 } else if (channel->type == VK_FORMAT_TYPE_FLOAT) {
1060 if (channel->size == 32) {
1061 memcpy(&v, &value->float32[c], 4);
1062 } else if(channel->size == 16) {
1063 v = util_float_to_half(value->float32[c]);
1064 } else {
1065 fprintf(stderr, "failed to fast clear for unhandled float size in format %d\n", format);
1066 return false;
1067 }
1068 } else {
1069 fprintf(stderr, "failed to fast clear for unhandled component type in format %d\n", format);
1070 return false;
1071 }
1072 clear_val |= (v & ((1ULL << channel->size) - 1)) << channel->shift;
1073 }
1074
1075 clear_vals[0] = clear_val;
1076 clear_vals[1] = clear_val >> 32;
1077
1078 return true;
1079 }
1080
1081 void radv_GetPhysicalDeviceFormatProperties(
1082 VkPhysicalDevice physicalDevice,
1083 VkFormat format,
1084 VkFormatProperties* pFormatProperties)
1085 {
1086 RADV_FROM_HANDLE(radv_physical_device, physical_device, physicalDevice);
1087
1088 radv_physical_device_get_format_properties(physical_device,
1089 format,
1090 pFormatProperties);
1091 }
1092
1093 void radv_GetPhysicalDeviceFormatProperties2(
1094 VkPhysicalDevice physicalDevice,
1095 VkFormat format,
1096 VkFormatProperties2* pFormatProperties)
1097 {
1098 RADV_FROM_HANDLE(radv_physical_device, physical_device, physicalDevice);
1099
1100 radv_physical_device_get_format_properties(physical_device,
1101 format,
1102 &pFormatProperties->formatProperties);
1103 }
1104
1105 static VkResult radv_get_image_format_properties(struct radv_physical_device *physical_device,
1106 const VkPhysicalDeviceImageFormatInfo2 *info,
1107 VkImageFormatProperties *pImageFormatProperties)
1108
1109 {
1110 VkFormatProperties format_props;
1111 VkFormatFeatureFlags format_feature_flags;
1112 VkExtent3D maxExtent;
1113 uint32_t maxMipLevels;
1114 uint32_t maxArraySize;
1115 VkSampleCountFlags sampleCounts = VK_SAMPLE_COUNT_1_BIT;
1116 const struct vk_format_description *desc = vk_format_description(info->format);
1117
1118 radv_physical_device_get_format_properties(physical_device, info->format,
1119 &format_props);
1120 if (info->tiling == VK_IMAGE_TILING_LINEAR) {
1121 format_feature_flags = format_props.linearTilingFeatures;
1122 } else if (info->tiling == VK_IMAGE_TILING_OPTIMAL) {
1123 format_feature_flags = format_props.optimalTilingFeatures;
1124 } else {
1125 unreachable("bad VkImageTiling");
1126 }
1127
1128 if (format_feature_flags == 0)
1129 goto unsupported;
1130
1131 if (info->type != VK_IMAGE_TYPE_2D && vk_format_is_depth_or_stencil(info->format))
1132 goto unsupported;
1133
1134 switch (info->type) {
1135 default:
1136 unreachable("bad vkimage type\n");
1137 case VK_IMAGE_TYPE_1D:
1138 maxExtent.width = 16384;
1139 maxExtent.height = 1;
1140 maxExtent.depth = 1;
1141 maxMipLevels = 15; /* log2(maxWidth) + 1 */
1142 maxArraySize = 2048;
1143 break;
1144 case VK_IMAGE_TYPE_2D:
1145 maxExtent.width = 16384;
1146 maxExtent.height = 16384;
1147 maxExtent.depth = 1;
1148 maxMipLevels = 15; /* log2(maxWidth) + 1 */
1149 maxArraySize = 2048;
1150 break;
1151 case VK_IMAGE_TYPE_3D:
1152 maxExtent.width = 2048;
1153 maxExtent.height = 2048;
1154 maxExtent.depth = 2048;
1155 maxMipLevels = 12; /* log2(maxWidth) + 1 */
1156 maxArraySize = 1;
1157 break;
1158 }
1159
1160 if (desc->layout == VK_FORMAT_LAYOUT_SUBSAMPLED) {
1161 /* Might be able to support but the entire format support is
1162 * messy, so taking the lazy way out. */
1163 maxArraySize = 1;
1164 }
1165
1166 if (info->tiling == VK_IMAGE_TILING_OPTIMAL &&
1167 info->type == VK_IMAGE_TYPE_2D &&
1168 (format_feature_flags & (VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT |
1169 VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT)) &&
1170 !(info->flags & VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT)) {
1171 sampleCounts |= VK_SAMPLE_COUNT_2_BIT | VK_SAMPLE_COUNT_4_BIT | VK_SAMPLE_COUNT_8_BIT;
1172 }
1173
1174 if (info->tiling == VK_IMAGE_TILING_LINEAR &&
1175 (info->format == VK_FORMAT_R32G32B32_SFLOAT ||
1176 info->format == VK_FORMAT_R32G32B32_SINT ||
1177 info->format == VK_FORMAT_R32G32B32_UINT)) {
1178 /* R32G32B32 is a weird format and the driver currently only
1179 * supports the barely minimum.
1180 * TODO: Implement more if we really need to.
1181 */
1182 if (info->type == VK_IMAGE_TYPE_3D)
1183 goto unsupported;
1184 maxArraySize = 1;
1185 maxMipLevels = 1;
1186 }
1187
1188
1189 /* We can't create 3d compressed 128bpp images that can be rendered to on GFX9 */
1190 if (physical_device->rad_info.chip_class >= GFX9 &&
1191 info->type == VK_IMAGE_TYPE_3D &&
1192 vk_format_get_blocksizebits(info->format) == 128 &&
1193 vk_format_is_compressed(info->format) &&
1194 (info->flags & VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT) &&
1195 ((info->flags & VK_IMAGE_CREATE_EXTENDED_USAGE_BIT) ||
1196 (info->usage & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT))) {
1197 goto unsupported;
1198 }
1199
1200 if (info->usage & VK_IMAGE_USAGE_SAMPLED_BIT) {
1201 if (!(format_feature_flags & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT)) {
1202 goto unsupported;
1203 }
1204 }
1205
1206 if (info->usage & VK_IMAGE_USAGE_STORAGE_BIT) {
1207 if (!(format_feature_flags & VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT)) {
1208 goto unsupported;
1209 }
1210 }
1211
1212 if (info->usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT) {
1213 if (!(format_feature_flags & VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT)) {
1214 goto unsupported;
1215 }
1216 }
1217
1218 if (info->usage & VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT) {
1219 if (!(format_feature_flags & VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT)) {
1220 goto unsupported;
1221 }
1222 }
1223
1224 if (info->usage & VK_IMAGE_USAGE_TRANSFER_SRC_BIT) {
1225 if (!(format_feature_flags & VK_FORMAT_FEATURE_TRANSFER_SRC_BIT)) {
1226 goto unsupported;
1227 }
1228 }
1229
1230 if (info->usage & VK_IMAGE_USAGE_TRANSFER_DST_BIT) {
1231 if (!(format_feature_flags & VK_FORMAT_FEATURE_TRANSFER_DST_BIT)) {
1232 goto unsupported;
1233 }
1234 }
1235
1236 if (info->usage & VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT) {
1237 if (!(format_feature_flags & (VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT |
1238 VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT))) {
1239 goto unsupported;
1240 }
1241 }
1242
1243 *pImageFormatProperties = (VkImageFormatProperties) {
1244 .maxExtent = maxExtent,
1245 .maxMipLevels = maxMipLevels,
1246 .maxArrayLayers = maxArraySize,
1247 .sampleCounts = sampleCounts,
1248
1249 /* FINISHME: Accurately calculate
1250 * VkImageFormatProperties::maxResourceSize.
1251 */
1252 .maxResourceSize = UINT32_MAX,
1253 };
1254
1255 return VK_SUCCESS;
1256 unsupported:
1257 *pImageFormatProperties = (VkImageFormatProperties) {
1258 .maxExtent = { 0, 0, 0 },
1259 .maxMipLevels = 0,
1260 .maxArrayLayers = 0,
1261 .sampleCounts = 0,
1262 .maxResourceSize = 0,
1263 };
1264
1265 return VK_ERROR_FORMAT_NOT_SUPPORTED;
1266 }
1267
1268 VkResult radv_GetPhysicalDeviceImageFormatProperties(
1269 VkPhysicalDevice physicalDevice,
1270 VkFormat format,
1271 VkImageType type,
1272 VkImageTiling tiling,
1273 VkImageUsageFlags usage,
1274 VkImageCreateFlags createFlags,
1275 VkImageFormatProperties* pImageFormatProperties)
1276 {
1277 RADV_FROM_HANDLE(radv_physical_device, physical_device, physicalDevice);
1278
1279 const VkPhysicalDeviceImageFormatInfo2 info = {
1280 .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2,
1281 .pNext = NULL,
1282 .format = format,
1283 .type = type,
1284 .tiling = tiling,
1285 .usage = usage,
1286 .flags = createFlags,
1287 };
1288
1289 return radv_get_image_format_properties(physical_device, &info,
1290 pImageFormatProperties);
1291 }
1292
1293 static void
1294 get_external_image_format_properties(const VkPhysicalDeviceImageFormatInfo2 *pImageFormatInfo,
1295 VkExternalMemoryHandleTypeFlagBits handleType,
1296 VkExternalMemoryProperties *external_properties)
1297 {
1298 VkExternalMemoryFeatureFlagBits flags = 0;
1299 VkExternalMemoryHandleTypeFlags export_flags = 0;
1300 VkExternalMemoryHandleTypeFlags compat_flags = 0;
1301 switch (handleType) {
1302 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT:
1303 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT:
1304 switch (pImageFormatInfo->type) {
1305 case VK_IMAGE_TYPE_2D:
1306 flags = VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT|VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT|VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT;
1307 compat_flags = export_flags = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT |
1308 VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT;
1309 break;
1310 default:
1311 break;
1312 }
1313 break;
1314 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT:
1315 flags = VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT;
1316 compat_flags = VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT;
1317 break;
1318 default:
1319 break;
1320 }
1321
1322 *external_properties = (VkExternalMemoryProperties) {
1323 .externalMemoryFeatures = flags,
1324 .exportFromImportedHandleTypes = export_flags,
1325 .compatibleHandleTypes = compat_flags,
1326 };
1327 }
1328
1329 VkResult radv_GetPhysicalDeviceImageFormatProperties2(
1330 VkPhysicalDevice physicalDevice,
1331 const VkPhysicalDeviceImageFormatInfo2 *base_info,
1332 VkImageFormatProperties2 *base_props)
1333 {
1334 RADV_FROM_HANDLE(radv_physical_device, physical_device, physicalDevice);
1335 const VkPhysicalDeviceExternalImageFormatInfo *external_info = NULL;
1336 VkExternalImageFormatProperties *external_props = NULL;
1337 VkSamplerYcbcrConversionImageFormatProperties *ycbcr_props = NULL;
1338 VkResult result;
1339
1340 result = radv_get_image_format_properties(physical_device, base_info,
1341 &base_props->imageFormatProperties);
1342 if (result != VK_SUCCESS)
1343 return result;
1344
1345 /* Extract input structs */
1346 vk_foreach_struct_const(s, base_info->pNext) {
1347 switch (s->sType) {
1348 case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO:
1349 external_info = (const void *) s;
1350 break;
1351 default:
1352 break;
1353 }
1354 }
1355
1356 /* Extract output structs */
1357 vk_foreach_struct(s, base_props->pNext) {
1358 switch (s->sType) {
1359 case VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES:
1360 external_props = (void *) s;
1361 break;
1362 case VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES:
1363 ycbcr_props = (void *) s;
1364 break;
1365 default:
1366 break;
1367 }
1368 }
1369
1370 /* From the Vulkan 1.0.97 spec:
1371 *
1372 * If handleType is 0, vkGetPhysicalDeviceImageFormatProperties2 will
1373 * behave as if VkPhysicalDeviceExternalImageFormatInfo was not
1374 * present and VkExternalImageFormatProperties will be ignored.
1375 */
1376 if (external_info && external_info->handleType != 0) {
1377 switch (external_info->handleType) {
1378 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT:
1379 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT:
1380 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT:
1381 get_external_image_format_properties(base_info, external_info->handleType,
1382 &external_props->externalMemoryProperties);
1383 break;
1384 default:
1385 /* From the Vulkan 1.0.97 spec:
1386 *
1387 * If handleType is not compatible with the [parameters] specified
1388 * in VkPhysicalDeviceImageFormatInfo2, then
1389 * vkGetPhysicalDeviceImageFormatProperties2 returns
1390 * VK_ERROR_FORMAT_NOT_SUPPORTED.
1391 */
1392 result = vk_errorf(physical_device->instance, VK_ERROR_FORMAT_NOT_SUPPORTED,
1393 "unsupported VkExternalMemoryTypeFlagBitsKHR 0x%x",
1394 external_info->handleType);
1395 goto fail;
1396 }
1397 }
1398
1399 if (ycbcr_props) {
1400 ycbcr_props->combinedImageSamplerDescriptorCount = vk_format_get_plane_count(base_info->format);
1401 }
1402
1403 return VK_SUCCESS;
1404
1405 fail:
1406 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) {
1407 /* From the Vulkan 1.0.97 spec:
1408 *
1409 * If the combination of parameters to
1410 * vkGetPhysicalDeviceImageFormatProperties2 is not supported by
1411 * the implementation for use in vkCreateImage, then all members of
1412 * imageFormatProperties will be filled with zero.
1413 */
1414 base_props->imageFormatProperties = (VkImageFormatProperties) {0};
1415 }
1416
1417 return result;
1418 }
1419
1420 void radv_GetPhysicalDeviceSparseImageFormatProperties(
1421 VkPhysicalDevice physicalDevice,
1422 VkFormat format,
1423 VkImageType type,
1424 uint32_t samples,
1425 VkImageUsageFlags usage,
1426 VkImageTiling tiling,
1427 uint32_t* pNumProperties,
1428 VkSparseImageFormatProperties* pProperties)
1429 {
1430 /* Sparse images are not yet supported. */
1431 *pNumProperties = 0;
1432 }
1433
1434 void radv_GetPhysicalDeviceSparseImageFormatProperties2(
1435 VkPhysicalDevice physicalDevice,
1436 const VkPhysicalDeviceSparseImageFormatInfo2 *pFormatInfo,
1437 uint32_t *pPropertyCount,
1438 VkSparseImageFormatProperties2 *pProperties)
1439 {
1440 /* Sparse images are not yet supported. */
1441 *pPropertyCount = 0;
1442 }
1443
1444 void radv_GetPhysicalDeviceExternalBufferProperties(
1445 VkPhysicalDevice physicalDevice,
1446 const VkPhysicalDeviceExternalBufferInfo *pExternalBufferInfo,
1447 VkExternalBufferProperties *pExternalBufferProperties)
1448 {
1449 VkExternalMemoryFeatureFlagBits flags = 0;
1450 VkExternalMemoryHandleTypeFlags export_flags = 0;
1451 VkExternalMemoryHandleTypeFlags compat_flags = 0;
1452 switch(pExternalBufferInfo->handleType) {
1453 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT:
1454 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT:
1455 flags = VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT |
1456 VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT;
1457 compat_flags = export_flags = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT |
1458 VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT;
1459 break;
1460 case VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT:
1461 flags = VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT;
1462 compat_flags = VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT;
1463 break;
1464 default:
1465 break;
1466 }
1467 pExternalBufferProperties->externalMemoryProperties = (VkExternalMemoryProperties) {
1468 .externalMemoryFeatures = flags,
1469 .exportFromImportedHandleTypes = export_flags,
1470 .compatibleHandleTypes = compat_flags,
1471 };
1472 }
1473
1474 /* DCC channel type categories within which formats can be reinterpreted
1475 * while keeping the same DCC encoding. The swizzle must also match. */
1476 enum dcc_channel_type {
1477 dcc_channel_float32,
1478 dcc_channel_uint32,
1479 dcc_channel_sint32,
1480 dcc_channel_float16,
1481 dcc_channel_uint16,
1482 dcc_channel_sint16,
1483 dcc_channel_uint_10_10_10_2,
1484 dcc_channel_uint8,
1485 dcc_channel_sint8,
1486 dcc_channel_incompatible,
1487 };
1488
1489 /* Return the type of DCC encoding. */
1490 static enum dcc_channel_type
1491 radv_get_dcc_channel_type(const struct vk_format_description *desc)
1492 {
1493 int i;
1494
1495 /* Find the first non-void channel. */
1496 for (i = 0; i < desc->nr_channels; i++)
1497 if (desc->channel[i].type != VK_FORMAT_TYPE_VOID)
1498 break;
1499 if (i == desc->nr_channels)
1500 return dcc_channel_incompatible;
1501
1502 switch (desc->channel[i].size) {
1503 case 32:
1504 if (desc->channel[i].type == VK_FORMAT_TYPE_FLOAT)
1505 return dcc_channel_float32;
1506 if (desc->channel[i].type == VK_FORMAT_TYPE_UNSIGNED)
1507 return dcc_channel_uint32;
1508 return dcc_channel_sint32;
1509 case 16:
1510 if (desc->channel[i].type == VK_FORMAT_TYPE_FLOAT)
1511 return dcc_channel_float16;
1512 if (desc->channel[i].type == VK_FORMAT_TYPE_UNSIGNED)
1513 return dcc_channel_uint16;
1514 return dcc_channel_sint16;
1515 case 10:
1516 return dcc_channel_uint_10_10_10_2;
1517 case 8:
1518 if (desc->channel[i].type == VK_FORMAT_TYPE_UNSIGNED)
1519 return dcc_channel_uint8;
1520 return dcc_channel_sint8;
1521 default:
1522 return dcc_channel_incompatible;
1523 }
1524 }
1525
1526 /* Return if it's allowed to reinterpret one format as another with DCC enabled. */
1527 bool radv_dcc_formats_compatible(VkFormat format1,
1528 VkFormat format2)
1529 {
1530 const struct vk_format_description *desc1, *desc2;
1531 enum dcc_channel_type type1, type2;
1532 int i;
1533
1534 if (format1 == format2)
1535 return true;
1536
1537 desc1 = vk_format_description(format1);
1538 desc2 = vk_format_description(format2);
1539
1540 if (desc1->nr_channels != desc2->nr_channels)
1541 return false;
1542
1543 /* Swizzles must be the same. */
1544 for (i = 0; i < desc1->nr_channels; i++)
1545 if (desc1->swizzle[i] <= VK_SWIZZLE_W &&
1546 desc2->swizzle[i] <= VK_SWIZZLE_W &&
1547 desc1->swizzle[i] != desc2->swizzle[i])
1548 return false;
1549
1550 type1 = radv_get_dcc_channel_type(desc1);
1551 type2 = radv_get_dcc_channel_type(desc2);
1552
1553 return type1 != dcc_channel_incompatible &&
1554 type2 != dcc_channel_incompatible &&
1555 type1 == type2;
1556 }
1557