freedreno/a6xx: Turn on texture tiling by default
[mesa.git] / src / gallium / drivers / freedreno / a6xx / fd6_format.h
1 /*
2 * Copyright (C) 2016 Rob Clark <robclark@freedesktop.org>
3 * Copyright © 2018 Google, Inc.
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 FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 *
24 * Authors:
25 * Rob Clark <robclark@freedesktop.org>
26 */
27
28 #ifndef FD6_UTIL_H_
29 #define FD6_UTIL_H_
30
31 #include "freedreno_util.h"
32
33 #include "a6xx.xml.h"
34
35 enum a6xx_vtx_fmt fd6_pipe2vtx(enum pipe_format format);
36 enum a6xx_tex_fmt fd6_pipe2tex(enum pipe_format format);
37 enum a6xx_color_fmt fd6_pipe2color(enum pipe_format format);
38 enum a3xx_color_swap fd6_pipe2swap(enum pipe_format format);
39 enum a6xx_tex_fetchsize fd6_pipe2fetchsize(enum pipe_format format);
40 enum a6xx_depth_format fd6_pipe2depth(enum pipe_format format);
41 enum a6xx_tex_swiz fd6_pipe2swiz(unsigned swiz);
42
43 uint32_t fd6_tex_swiz(struct pipe_resource *prsc, unsigned swizzle_r,
44 unsigned swizzle_g, unsigned swizzle_b, unsigned swizzle_a);
45
46 static inline enum a6xx_2d_ifmt
47 fd6_ifmt(enum a6xx_color_fmt fmt)
48 {
49 switch (fmt) {
50 case RB6_A8_UNORM:
51 case RB6_R8_UNORM:
52 case RB6_R8_SNORM:
53 case RB6_R8G8_UNORM:
54 case RB6_R8G8_SNORM:
55 case RB6_R8G8B8A8_UNORM:
56 case RB6_R8G8B8_UNORM:
57 case RB6_R8G8B8A8_SNORM:
58 return R2D_UNORM8;
59
60 case RB6_R32_UINT:
61 case RB6_R32_SINT:
62 case RB6_R32G32_UINT:
63 case RB6_R32G32_SINT:
64 case RB6_R32G32B32A32_UINT:
65 case RB6_R32G32B32A32_SINT:
66 return R2D_INT32;
67
68 case RB6_R16_UINT:
69 case RB6_R16_SINT:
70 case RB6_R16G16_UINT:
71 case RB6_R16G16_SINT:
72 case RB6_R16G16B16A16_UINT:
73 case RB6_R16G16B16A16_SINT:
74 return R2D_INT16;
75
76 case RB6_R8_UINT:
77 case RB6_R8_SINT:
78 case RB6_R8G8_UINT:
79 case RB6_R8G8_SINT:
80 case RB6_R8G8B8A8_UINT:
81 case RB6_R8G8B8A8_SINT:
82 return R2D_INT8;
83
84 case RB6_R16_UNORM:
85 case RB6_R16_SNORM:
86 case RB6_R16G16_UNORM:
87 case RB6_R16G16_SNORM:
88 case RB6_R16G16B16A16_UNORM:
89 case RB6_R16G16B16A16_SNORM:
90 case RB6_R32_FLOAT:
91 case RB6_R32G32_FLOAT:
92 case RB6_R32G32B32A32_FLOAT:
93 return R2D_FLOAT32;
94
95 case RB6_R16_FLOAT:
96 case RB6_R16G16_FLOAT:
97 case RB6_R16G16B16A16_FLOAT:
98 return R2D_FLOAT16;
99
100 case RB6_R4G4B4A4_UNORM:
101 case RB6_R5G5B5A1_UNORM:
102 case RB6_R5G6B5_UNORM:
103 case RB6_R10G10B10A2_UNORM:
104 case RB6_R10G10B10A2_UINT:
105 case RB6_R11G11B10_FLOAT:
106 case RB6_X8Z24_UNORM:
107 // ???
108 return 0;
109 default:
110 unreachable("bad format");
111 return 0;
112 }
113 }
114
115 #endif /* FD6_UTIL_H_ */