etnaviv: remove dead code
[mesa.git] / src / gallium / drivers / etnaviv / etnaviv_util.h
1 /*
2 * Copyright (c) 2012-2015 Etnaviv Project
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sub license,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the
12 * next paragraph) shall be included in all copies or substantial portions
13 * of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 /* Misc util */
25 #ifndef H_ETNA_UTIL
26 #define H_ETNA_UTIL
27
28 #include <math.h>
29
30 /* for conditionally setting boolean flag(s): */
31 #define COND(bool, val) ((bool) ? (val) : 0)
32
33 #define foreach_bit(b, mask) \
34 for (uint32_t _m = (mask); _m && ({(b) = u_bit_scan(&_m); 1;});)
35
36 /* align to a value divisable by granularity >= value, works only for powers of two */
37 static inline uint32_t
38 etna_align_up(uint32_t value, uint32_t granularity)
39 {
40 return (value + (granularity - 1)) & (~(granularity - 1));
41 }
42
43 static inline uint32_t
44 etna_bits_ones(unsigned num)
45 {
46 return (1 << num) - 1;
47 }
48
49 /* clamped float [0.0 .. 1.0] -> [0 .. 255] */
50 static inline uint8_t
51 etna_cfloat_to_uint8(float f)
52 {
53 if (f <= 0.0f)
54 return 0;
55
56 if (f >= (1.0f - 1.0f / 256.0f))
57 return 255;
58
59 return f * 256.0f;
60 }
61
62 /* clamped float [0.0 .. 1.0] -> [0 .. (1<<bits)-1] */
63 static inline uint32_t
64 etna_cfloat_to_uintN(float f, int bits)
65 {
66 if (f <= 0.0f)
67 return 0;
68
69 if (f >= (1.0f - 1.0f / (1 << bits)))
70 return (1 << bits) - 1;
71
72 return f * (1 << bits);
73 }
74
75 /* 1/log10(2) */
76 #define RCPLOG2 (1.4426950408889634f)
77
78 /* float to fixp 5.5 */
79 static inline uint32_t
80 etna_float_to_fixp55(float f)
81 {
82 if (f >= 15.953125f)
83 return 511;
84
85 if (f < -16.0f)
86 return 512;
87
88 return (int32_t)(f * 32.0f + 0.5f);
89 }
90
91 /* float to fixp 8.8 */
92 static inline uint32_t
93 etna_float_to_fixp88(float f)
94 {
95 if (f >= (32767.0 - 1.0f) / 256.0f)
96 return 32767;
97
98 if (f < -16.0f)
99 return 32768;
100
101 return (int32_t)(f * 256.0f + 0.5f);
102 }
103
104 /* texture size to log2 in fixp 5.5 format */
105 static inline uint32_t
106 etna_log2_fixp55(unsigned width)
107 {
108 return etna_float_to_fixp55(logf((float)width) * RCPLOG2);
109 }
110
111 /* texture size to log2 in fixp 8.8 format */
112 static inline uint32_t
113 etna_log2_fixp88(unsigned width)
114 {
115 return etna_float_to_fixp88(logf((float)width) * RCPLOG2);
116 }
117
118 /* float to fixp 16.16 */
119 static inline uint32_t
120 etna_f32_to_fixp16(float f)
121 {
122 if (f >= (32768.0f - 1.0f / 65536.0f))
123 return 0x7fffffff;
124
125 if (f < -32768.0f)
126 return 0x80000000;
127
128 return (int32_t)(f * 65536.0f + 0.5f);
129 }
130
131 #endif