67cb14b7cc0db19b7ffb7c9cd6e85d92964b4e97
[mesa.git] / src / gallium / drivers / radeonsi / radeonsi_pipe.h
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * 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 AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Jerome Glisse
25 */
26 #ifndef RADEONSI_PIPE_H
27 #define RADEONSI_PIPE_H
28
29 #include "../../winsys/radeon/drm/radeon_winsys.h"
30
31 #include "pipe/p_state.h"
32 #include "pipe/p_screen.h"
33 #include "pipe/p_context.h"
34 #include "util/u_format.h"
35 #include "util/u_math.h"
36 #include "util/u_slab.h"
37 #include "r600.h"
38 #include "radeonsi_public.h"
39 #include "radeonsi_pm4.h"
40 #include "si_state.h"
41 #include "r600_resource.h"
42 #include "sid.h"
43
44 #ifdef PIPE_ARCH_BIG_ENDIAN
45 #define R600_BIG_ENDIAN 1
46 #else
47 #define R600_BIG_ENDIAN 0
48 #endif
49
50 #define R600_TRACE_CS 0
51 #define R600_TRACE_CS_DWORDS 6
52
53 struct si_pipe_compute;
54
55 struct r600_pipe_fences {
56 struct si_resource *bo;
57 unsigned *data;
58 unsigned next_index;
59 /* linked list of preallocated blocks */
60 struct list_head blocks;
61 /* linked list of freed fences */
62 struct list_head pool;
63 pipe_mutex mutex;
64 };
65
66 struct r600_screen {
67 struct pipe_screen screen;
68 struct radeon_winsys *ws;
69 unsigned family;
70 enum chip_class chip_class;
71 struct radeon_info info;
72 struct r600_tiling_info tiling_info;
73 struct util_slab_mempool pool_buffers;
74 struct r600_pipe_fences fences;
75 #if R600_TRACE_CS
76 struct si_resource *trace_bo;
77 uint32_t *trace_ptr;
78 unsigned cs_count;
79 #endif
80 };
81
82 struct si_pipe_sampler_view {
83 struct pipe_sampler_view base;
84 struct si_resource *resource;
85 uint32_t state[8];
86 };
87
88 struct si_pipe_sampler_state {
89 uint32_t val[4];
90 uint32_t border_color[4];
91 };
92
93 struct si_cs_shader_state {
94 struct si_pipe_compute *program;
95 };
96
97 /* needed for blitter save */
98 #define NUM_TEX_UNITS 16
99
100 struct r600_textures_info {
101 struct si_pipe_sampler_view *views[NUM_TEX_UNITS];
102 struct si_pipe_sampler_state *samplers[NUM_TEX_UNITS];
103 unsigned n_views;
104 uint32_t depth_texture_mask; /* which textures are depth */
105 unsigned n_samplers;
106 bool samplers_dirty;
107 bool is_array_sampler[NUM_TEX_UNITS];
108 };
109
110 struct r600_fence {
111 struct pipe_reference reference;
112 unsigned index; /* in the shared bo */
113 struct si_resource *sleep_bo;
114 struct list_head head;
115 };
116
117 #define FENCE_BLOCK_SIZE 16
118
119 struct r600_fence_block {
120 struct r600_fence fences[FENCE_BLOCK_SIZE];
121 struct list_head head;
122 };
123
124 #define R600_CONSTANT_ARRAY_SIZE 256
125 #define R600_RESOURCE_ARRAY_SIZE 160
126
127 struct r600_constbuf_state
128 {
129 struct pipe_constant_buffer cb[2];
130 uint32_t enabled_mask;
131 uint32_t dirty_mask;
132 };
133
134 struct r600_context {
135 struct pipe_context context;
136 struct blitter_context *blitter;
137 enum radeon_family family;
138 enum chip_class chip_class;
139 void *custom_dsa_flush_depth_stencil;
140 void *custom_dsa_flush_depth;
141 void *custom_dsa_flush_stencil;
142 void *custom_dsa_flush_inplace;
143 struct r600_screen *screen;
144 struct radeon_winsys *ws;
145 struct si_vertex_element *vertex_elements;
146 struct pipe_framebuffer_state framebuffer;
147 unsigned pa_sc_line_stipple;
148 unsigned pa_su_sc_mode_cntl;
149 /* for saving when using blitter */
150 struct pipe_stencil_ref stencil_ref;
151 struct si_pipe_shader_selector *ps_shader;
152 struct si_pipe_shader_selector *vs_shader;
153 struct si_cs_shader_state cs_shader_state;
154 struct pipe_query *current_render_cond;
155 unsigned current_render_cond_mode;
156 struct pipe_query *saved_render_cond;
157 unsigned saved_render_cond_mode;
158 /* shader information */
159 unsigned sprite_coord_enable;
160 unsigned export_16bpc;
161 struct r600_constbuf_state constbuf_state[PIPE_SHADER_TYPES];
162 struct r600_textures_info vs_samplers;
163 struct r600_textures_info ps_samplers;
164 struct si_resource *border_color_table;
165 unsigned border_color_offset;
166
167 struct u_upload_mgr *uploader;
168 struct util_slab_mempool pool_transfers;
169
170 unsigned default_ps_gprs, default_vs_gprs;
171
172 /* Below are variables from the old r600_context.
173 */
174 struct radeon_winsys_cs *cs;
175
176 unsigned pm4_dirty_cdwords;
177
178 /* The list of active queries. Only one query of each type can be active. */
179 struct list_head active_query_list;
180 unsigned num_cs_dw_queries_suspend;
181 unsigned num_cs_dw_streamout_end;
182
183 unsigned backend_mask;
184 unsigned max_db; /* for OQ */
185 unsigned flags;
186 boolean predicate_drawing;
187
188 unsigned num_so_targets;
189 struct r600_so_target *so_targets[PIPE_MAX_SO_BUFFERS];
190 boolean streamout_start;
191 unsigned streamout_append_bitmask;
192 unsigned *vs_so_stride_in_dw;
193 unsigned *vs_shader_so_strides;
194
195 /* Vertex and index buffers. */
196 bool vertex_buffers_dirty;
197 struct pipe_index_buffer index_buffer;
198 struct pipe_vertex_buffer vertex_buffer[PIPE_MAX_ATTRIBS];
199 unsigned nr_vertex_buffers;
200
201 /* With rasterizer discard, there doesn't have to be a pixel shader.
202 * In that case, we bind this one: */
203 struct si_pipe_shader *dummy_pixel_shader;
204
205 /* SI state handling */
206 union si_state queued;
207 union si_state emitted;
208 };
209
210 /* r600_blit.c */
211 void si_init_blit_functions(struct r600_context *rctx);
212 void si_blit_uncompress_depth(struct pipe_context *ctx,
213 struct r600_resource_texture *texture,
214 struct r600_resource_texture *staging,
215 unsigned first_level, unsigned last_level,
216 unsigned first_layer, unsigned last_layer);
217 void si_flush_depth_textures(struct r600_context *rctx,
218 struct r600_textures_info *textures);
219
220 /* r600_buffer.c */
221 bool si_init_resource(struct r600_screen *rscreen,
222 struct si_resource *res,
223 unsigned size, unsigned alignment,
224 boolean use_reusable_pool, unsigned usage);
225 struct pipe_resource *si_buffer_create(struct pipe_screen *screen,
226 const struct pipe_resource *templ);
227 void r600_upload_index_buffer(struct r600_context *rctx,
228 struct pipe_index_buffer *ib, unsigned count);
229
230
231 /* r600_pipe.c */
232 void radeonsi_flush(struct pipe_context *ctx, struct pipe_fence_handle **fence,
233 unsigned flags);
234 const char *r600_get_llvm_processor_name(enum radeon_family family);
235
236 /* r600_query.c */
237 void r600_init_query_functions(struct r600_context *rctx);
238
239 /* r600_resource.c */
240 void r600_init_context_resource_functions(struct r600_context *r600);
241
242 /* r600_texture.c */
243 void r600_init_screen_texture_functions(struct pipe_screen *screen);
244 void si_init_surface_functions(struct r600_context *r600);
245
246 /* r600_translate.c */
247 void r600_translate_index_buffer(struct r600_context *r600,
248 struct pipe_index_buffer *ib,
249 unsigned count);
250
251 #if R600_TRACE_CS
252 void r600_trace_emit(struct r600_context *rctx);
253 #endif
254
255 /* radeonsi_compute.c */
256 void si_init_compute_functions(struct r600_context *rctx);
257
258 /* radeonsi_uvd.c */
259 struct pipe_video_decoder *radeonsi_uvd_create_decoder(struct pipe_context *context,
260 enum pipe_video_profile profile,
261 enum pipe_video_entrypoint entrypoint,
262 enum pipe_video_chroma_format chroma_format,
263 unsigned width, unsigned height,
264 unsigned max_references, bool expect_chunked_decode);
265
266 struct pipe_video_buffer *radeonsi_video_buffer_create(struct pipe_context *pipe,
267 const struct pipe_video_buffer *tmpl);
268
269 /*
270 * common helpers
271 */
272 static INLINE uint32_t S_FIXED(float value, uint32_t frac_bits)
273 {
274 return value * (1 << frac_bits);
275 }
276 #define ALIGN_DIVUP(x, y) (((x) + (y) - 1) / (y))
277
278 static INLINE unsigned si_map_swizzle(unsigned swizzle)
279 {
280 switch (swizzle) {
281 case UTIL_FORMAT_SWIZZLE_Y:
282 return V_008F0C_SQ_SEL_Y;
283 case UTIL_FORMAT_SWIZZLE_Z:
284 return V_008F0C_SQ_SEL_Z;
285 case UTIL_FORMAT_SWIZZLE_W:
286 return V_008F0C_SQ_SEL_W;
287 case UTIL_FORMAT_SWIZZLE_0:
288 return V_008F0C_SQ_SEL_0;
289 case UTIL_FORMAT_SWIZZLE_1:
290 return V_008F0C_SQ_SEL_1;
291 default: /* UTIL_FORMAT_SWIZZLE_X */
292 return V_008F0C_SQ_SEL_X;
293 }
294 }
295
296 static inline unsigned r600_tex_aniso_filter(unsigned filter)
297 {
298 if (filter <= 1) return 0;
299 if (filter <= 2) return 1;
300 if (filter <= 4) return 2;
301 if (filter <= 8) return 3;
302 /* else */ return 4;
303 }
304
305 /* 12.4 fixed-point */
306 static INLINE unsigned r600_pack_float_12p4(float x)
307 {
308 return x <= 0 ? 0 :
309 x >= 4096 ? 0xffff : x * 16;
310 }
311
312 static INLINE uint64_t r600_resource_va(struct pipe_screen *screen, struct pipe_resource *resource)
313 {
314 struct r600_screen *rscreen = (struct r600_screen*)screen;
315 struct si_resource *rresource = (struct si_resource*)resource;
316
317 return rscreen->ws->buffer_get_virtual_address(rresource->cs_buf);
318 }
319
320 #endif