r600g: disable handling of DISCARD_RANGE
[mesa.git] / src / gallium / drivers / r600 / r600_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 R600_PIPE_H
27 #define R600_PIPE_H
28
29 #include "util/u_slab.h"
30 #include "r600.h"
31 #include "r600_llvm.h"
32 #include "r600_public.h"
33 #include "r600_shader.h"
34 #include "r600_resource.h"
35 #include "evergreen_compute.h"
36
37 #define R600_MAX_CONST_BUFFERS 2
38 #define R600_MAX_CONST_BUFFER_SIZE 4096
39
40 #ifdef PIPE_ARCH_BIG_ENDIAN
41 #define R600_BIG_ENDIAN 1
42 #else
43 #define R600_BIG_ENDIAN 0
44 #endif
45
46 enum r600_atom_flags {
47 /* When set, atoms are added at the beginning of the dirty list
48 * instead of the end. */
49 EMIT_EARLY = (1 << 0)
50 };
51
52 /* This encapsulates a state or an operation which can emitted into the GPU
53 * command stream. It's not limited to states only, it can be used for anything
54 * that wants to write commands into the CS (e.g. cache flushes). */
55 struct r600_atom {
56 void (*emit)(struct r600_context *ctx, struct r600_atom *state);
57
58 unsigned num_dw;
59 enum r600_atom_flags flags;
60 bool dirty;
61
62 struct list_head head;
63 };
64
65 /* This is an atom containing GPU commands that never change.
66 * This is supposed to be copied directly into the CS. */
67 struct r600_command_buffer {
68 struct r600_atom atom;
69 uint32_t *buf;
70 unsigned max_num_dw;
71 unsigned pkt_flags;
72 };
73
74 struct r600_surface_sync_cmd {
75 struct r600_atom atom;
76 unsigned flush_flags; /* CP_COHER_CNTL */
77 };
78
79 struct r600_db_misc_state {
80 struct r600_atom atom;
81 bool occlusion_query_enabled;
82 bool flush_depthstencil_through_cb;
83 bool copy_depth, copy_stencil;
84 unsigned copy_sample;
85 };
86
87 struct r600_cb_misc_state {
88 struct r600_atom atom;
89 unsigned cb_color_control; /* this comes from blend state */
90 unsigned blend_colormask; /* 8*4 bits for 8 RGBA colorbuffers */
91 unsigned nr_cbufs;
92 unsigned nr_ps_color_outputs;
93 bool multiwrite;
94 bool dual_src_blend;
95 };
96
97 struct r600_alphatest_state {
98 struct r600_atom atom;
99 unsigned sx_alpha_test_control; /* this comes from dsa state */
100 unsigned sx_alpha_ref; /* this comes from dsa state */
101 bool bypass;
102 bool cb0_export_16bpc; /* from set_framebuffer_state */
103 };
104
105 struct r600_cs_shader_state {
106 struct r600_atom atom;
107 struct r600_pipe_compute *shader;
108 };
109
110 struct r600_sample_mask {
111 struct r600_atom atom;
112 uint16_t sample_mask; /* there are only 8 bits on EG, 16 bits on Cayman */
113 };
114
115 enum r600_pipe_state_id {
116 R600_PIPE_STATE_BLEND = 0,
117 R600_PIPE_STATE_BLEND_COLOR,
118 R600_PIPE_STATE_CONFIG,
119 R600_PIPE_STATE_SEAMLESS_CUBEMAP,
120 R600_PIPE_STATE_CLIP,
121 R600_PIPE_STATE_SCISSOR,
122 R600_PIPE_STATE_VIEWPORT,
123 R600_PIPE_STATE_RASTERIZER,
124 R600_PIPE_STATE_VGT,
125 R600_PIPE_STATE_FRAMEBUFFER,
126 R600_PIPE_STATE_DSA,
127 R600_PIPE_STATE_STENCIL_REF,
128 R600_PIPE_STATE_PS_SHADER,
129 R600_PIPE_STATE_VS_SHADER,
130 R600_PIPE_STATE_CONSTANT,
131 R600_PIPE_STATE_SAMPLER,
132 R600_PIPE_STATE_RESOURCE,
133 R600_PIPE_STATE_POLYGON_OFFSET,
134 R600_PIPE_STATE_FETCH_SHADER,
135 R600_PIPE_STATE_SPI,
136 R600_PIPE_NSTATES
137 };
138
139 struct compute_memory_pool;
140 void compute_memory_pool_delete(struct compute_memory_pool* pool);
141 struct compute_memory_pool* compute_memory_pool_new(
142 struct r600_screen *rscreen);
143
144 struct r600_pipe_fences {
145 struct r600_resource *bo;
146 unsigned *data;
147 unsigned next_index;
148 /* linked list of preallocated blocks */
149 struct list_head blocks;
150 /* linked list of freed fences */
151 struct list_head pool;
152 pipe_mutex mutex;
153 };
154
155 struct r600_screen {
156 struct pipe_screen screen;
157 struct radeon_winsys *ws;
158 unsigned family;
159 enum chip_class chip_class;
160 struct radeon_info info;
161 bool has_streamout;
162 struct r600_tiling_info tiling_info;
163 struct r600_pipe_fences fences;
164
165 /*for compute global memory binding, we allocate stuff here, instead of
166 * buffers.
167 * XXX: Not sure if this is the best place for global_pool. Also,
168 * it's not thread safe, so it won't work with multiple contexts. */
169 struct compute_memory_pool *global_pool;
170 };
171
172 struct r600_pipe_sampler_view {
173 struct pipe_sampler_view base;
174 struct r600_resource *tex_resource;
175 uint32_t tex_resource_words[8];
176 };
177
178 struct r600_pipe_rasterizer {
179 struct r600_pipe_state rstate;
180 boolean flatshade;
181 boolean two_side;
182 unsigned sprite_coord_enable;
183 unsigned clip_plane_enable;
184 unsigned pa_sc_line_stipple;
185 unsigned pa_cl_clip_cntl;
186 float offset_units;
187 float offset_scale;
188 bool scissor_enable;
189 bool multisample_enable;
190 };
191
192 struct r600_pipe_blend {
193 struct r600_pipe_state rstate;
194 unsigned cb_target_mask;
195 unsigned cb_color_control;
196 bool dual_src_blend;
197 bool alpha_to_one;
198 };
199
200 struct r600_pipe_dsa {
201 struct r600_pipe_state rstate;
202 unsigned alpha_ref;
203 ubyte valuemask[2];
204 ubyte writemask[2];
205 unsigned sx_alpha_test_control;
206 };
207
208 struct r600_vertex_element
209 {
210 unsigned count;
211 struct pipe_vertex_element elements[PIPE_MAX_ATTRIBS];
212 struct r600_resource *fetch_shader;
213 unsigned fs_size;
214 struct r600_pipe_state rstate;
215 };
216
217 struct r600_pipe_shader;
218
219 struct r600_pipe_shader_selector {
220 struct r600_pipe_shader *current;
221
222 struct tgsi_token *tokens;
223 struct pipe_stream_output_info so;
224
225 unsigned num_shaders;
226
227 /* PIPE_SHADER_[VERTEX|FRAGMENT|...] */
228 unsigned type;
229
230 unsigned nr_ps_max_color_exports;
231 };
232
233 struct r600_pipe_shader {
234 struct r600_pipe_shader_selector *selector;
235 struct r600_pipe_shader *next_variant;
236 struct r600_shader shader;
237 struct r600_pipe_state rstate;
238 struct r600_resource *bo;
239 struct r600_resource *bo_fetch;
240 struct r600_vertex_element vertex_elements;
241 unsigned sprite_coord_enable;
242 unsigned flatshade;
243 unsigned pa_cl_vs_out_cntl;
244 unsigned nr_ps_color_outputs;
245 unsigned key;
246 unsigned db_shader_control;
247 unsigned ps_depth_export;
248 };
249
250 struct r600_pipe_sampler_state {
251 uint32_t tex_sampler_words[3];
252 uint32_t border_color[4];
253 bool border_color_use;
254 bool seamless_cube_map;
255 };
256
257 /* needed for blitter save */
258 #define NUM_TEX_UNITS 16
259
260 struct r600_seamless_cube_map {
261 struct r600_atom atom;
262 bool enabled;
263 };
264
265 struct r600_samplerview_state {
266 struct r600_atom atom;
267 struct r600_pipe_sampler_view *views[NUM_TEX_UNITS];
268 uint32_t enabled_mask;
269 uint32_t dirty_mask;
270 uint32_t depth_texture_mask; /* which textures are depth */
271 };
272
273 struct r600_textures_info {
274 struct r600_samplerview_state views;
275 struct r600_atom atom_sampler;
276 struct r600_pipe_sampler_state *samplers[NUM_TEX_UNITS];
277 unsigned n_samplers;
278 bool is_array_sampler[NUM_TEX_UNITS];
279 };
280
281 struct r600_fence {
282 struct pipe_reference reference;
283 unsigned index; /* in the shared bo */
284 struct r600_resource *sleep_bo;
285 struct list_head head;
286 };
287
288 #define FENCE_BLOCK_SIZE 16
289
290 struct r600_fence_block {
291 struct r600_fence fences[FENCE_BLOCK_SIZE];
292 struct list_head head;
293 };
294
295 #define R600_CONSTANT_ARRAY_SIZE 256
296 #define R600_RESOURCE_ARRAY_SIZE 160
297
298 struct r600_stencil_ref
299 {
300 ubyte ref_value[2];
301 ubyte valuemask[2];
302 ubyte writemask[2];
303 };
304
305 struct r600_constbuf_state
306 {
307 struct r600_atom atom;
308 struct pipe_constant_buffer cb[PIPE_MAX_CONSTANT_BUFFERS];
309 uint32_t enabled_mask;
310 uint32_t dirty_mask;
311 };
312
313 struct r600_vertexbuf_state
314 {
315 struct r600_atom atom;
316 struct pipe_vertex_buffer vb[PIPE_MAX_ATTRIBS];
317 uint32_t enabled_mask; /* non-NULL buffers */
318 uint32_t dirty_mask;
319 };
320
321 struct r600_context {
322 struct pipe_context context;
323 struct blitter_context *blitter;
324 enum radeon_family family;
325 enum chip_class chip_class;
326 boolean has_vertex_cache;
327 unsigned r6xx_num_clause_temp_gprs;
328 void *custom_dsa_flush;
329 void *custom_blend_resolve;
330
331 struct r600_screen *screen;
332 struct radeon_winsys *ws;
333 struct r600_pipe_state *states[R600_PIPE_NSTATES];
334 struct r600_vertex_element *vertex_elements;
335 struct pipe_framebuffer_state framebuffer;
336 unsigned compute_cb_target_mask;
337 unsigned db_shader_control;
338 unsigned pa_sc_line_stipple;
339 unsigned pa_cl_clip_cntl;
340 /* for saving when using blitter */
341 struct pipe_stencil_ref stencil_ref;
342 struct pipe_viewport_state viewport;
343 struct pipe_clip_state clip;
344 struct r600_pipe_shader_selector *ps_shader;
345 struct r600_pipe_shader_selector *vs_shader;
346 struct r600_pipe_rasterizer *rasterizer;
347 struct r600_pipe_state vgt;
348 struct r600_pipe_state spi;
349 struct pipe_query *current_render_cond;
350 unsigned current_render_cond_mode;
351 struct pipe_query *saved_render_cond;
352 unsigned saved_render_cond_mode;
353 /* shader information */
354 boolean two_side;
355 boolean spi_dirty;
356 unsigned sprite_coord_enable;
357 boolean flatshade;
358 boolean export_16bpc;
359 unsigned nr_cbufs;
360 bool alpha_to_one;
361 bool multisample_enable;
362 bool cb0_is_integer;
363
364 struct u_upload_mgr *uploader;
365 struct util_slab_mempool pool_transfers;
366
367 unsigned default_ps_gprs, default_vs_gprs;
368
369 /* States based on r600_atom. */
370 struct list_head dirty_states;
371 struct r600_command_buffer start_cs_cmd; /* invariant state mostly */
372 /** Compute specific registers initializations. The start_cs_cmd atom
373 * must be emitted before start_compute_cs_cmd. */
374 struct r600_command_buffer start_compute_cs_cmd;
375 struct r600_surface_sync_cmd surface_sync_cmd;
376 struct r600_atom r6xx_flush_and_inv_cmd;
377 struct r600_alphatest_state alphatest_state;
378 struct r600_cb_misc_state cb_misc_state;
379 struct r600_db_misc_state db_misc_state;
380 /** Vertex buffers for fetch shaders */
381 struct r600_vertexbuf_state vertex_buffer_state;
382 /** Vertex buffers for compute shaders */
383 struct r600_vertexbuf_state cs_vertex_buffer_state;
384 struct r600_constbuf_state vs_constbuf_state;
385 struct r600_constbuf_state ps_constbuf_state;
386 struct r600_textures_info vs_samplers;
387 struct r600_textures_info ps_samplers;
388 struct r600_seamless_cube_map seamless_cube_map;
389 struct r600_cs_shader_state cs_shader_state;
390 struct r600_sample_mask sample_mask;
391
392 struct radeon_winsys_cs *cs;
393
394 struct r600_range *range;
395 unsigned nblocks;
396 struct r600_block **blocks;
397 struct list_head dirty;
398 struct list_head enable_list;
399 unsigned pm4_dirty_cdwords;
400 unsigned ctx_pm4_ndwords;
401
402 /* The list of active queries. Only one query of each type can be active. */
403 int num_occlusion_queries;
404
405 /* Manage queries in two separate groups:
406 * The timer ones and the others (streamout, occlusion).
407 *
408 * We do this because we should only suspend non-timer queries for u_blitter,
409 * and later if the non-timer queries are suspended, the context flush should
410 * only suspend and resume the timer queries. */
411 struct list_head active_timer_queries;
412 unsigned num_cs_dw_timer_queries_suspend;
413 struct list_head active_nontimer_queries;
414 unsigned num_cs_dw_nontimer_queries_suspend;
415
416 unsigned num_cs_dw_streamout_end;
417
418 unsigned backend_mask;
419 unsigned max_db; /* for OQ */
420 unsigned flags;
421 boolean predicate_drawing;
422
423 unsigned num_so_targets;
424 struct r600_so_target *so_targets[PIPE_MAX_SO_BUFFERS];
425 boolean streamout_start;
426 unsigned streamout_append_bitmask;
427
428 /* There is no scissor enable bit on r6xx, so we must use a workaround.
429 * These track the current scissor state. */
430 bool scissor_enable;
431 struct pipe_scissor_state scissor_state;
432
433 /* With rasterizer discard, there doesn't have to be a pixel shader.
434 * In that case, we bind this one: */
435 void *dummy_pixel_shader;
436
437 boolean dual_src_blend;
438
439 /* Index buffer. */
440 struct pipe_index_buffer index_buffer;
441 };
442
443 static INLINE void r600_emit_atom(struct r600_context *rctx, struct r600_atom *atom)
444 {
445 atom->emit(rctx, atom);
446 atom->dirty = false;
447 if (atom->head.next && atom->head.prev)
448 LIST_DELINIT(&atom->head);
449 }
450
451 static INLINE void r600_atom_dirty(struct r600_context *rctx, struct r600_atom *state)
452 {
453 if (!state->dirty) {
454 if (state->flags & EMIT_EARLY) {
455 LIST_ADD(&state->head, &rctx->dirty_states);
456 } else {
457 LIST_ADDTAIL(&state->head, &rctx->dirty_states);
458 }
459 state->dirty = true;
460 }
461 }
462
463 /* evergreen_state.c */
464 void evergreen_init_state_functions(struct r600_context *rctx);
465 void evergreen_init_atom_start_cs(struct r600_context *rctx);
466 void evergreen_pipe_shader_ps(struct pipe_context *ctx, struct r600_pipe_shader *shader);
467 void evergreen_pipe_shader_vs(struct pipe_context *ctx, struct r600_pipe_shader *shader);
468 void evergreen_fetch_shader(struct pipe_context *ctx, struct r600_vertex_element *ve);
469 void *evergreen_create_db_flush_dsa(struct r600_context *rctx);
470 void *evergreen_create_resolve_blend(struct r600_context *rctx);
471 void evergreen_polygon_offset_update(struct r600_context *rctx);
472 boolean evergreen_is_format_supported(struct pipe_screen *screen,
473 enum pipe_format format,
474 enum pipe_texture_target target,
475 unsigned sample_count,
476 unsigned usage);
477 void evergreen_init_color_surface(struct r600_context *rctx,
478 struct r600_surface *surf);
479 void evergreen_update_dual_export_state(struct r600_context * rctx);
480
481 /* r600_blit.c */
482 void r600_copy_buffer(struct pipe_context *ctx, struct
483 pipe_resource *dst, unsigned dstx,
484 struct pipe_resource *src, const struct pipe_box *src_box);
485 void r600_init_blit_functions(struct r600_context *rctx);
486 void r600_blit_uncompress_depth(struct pipe_context *ctx,
487 struct r600_resource_texture *texture,
488 struct r600_resource_texture *staging,
489 unsigned first_level, unsigned last_level,
490 unsigned first_layer, unsigned last_layer,
491 unsigned first_sample, unsigned last_sample);
492 void r600_flush_depth_textures(struct r600_context *rctx,
493 struct r600_samplerview_state *textures);
494
495 /* r600_buffer.c */
496 bool r600_init_resource(struct r600_screen *rscreen,
497 struct r600_resource *res,
498 unsigned size, unsigned alignment,
499 unsigned bind, unsigned usage);
500 struct pipe_resource *r600_buffer_create(struct pipe_screen *screen,
501 const struct pipe_resource *templ);
502
503 /* r600_pipe.c */
504 void r600_flush(struct pipe_context *ctx, struct pipe_fence_handle **fence,
505 unsigned flags);
506
507 /* r600_query.c */
508 void r600_init_query_functions(struct r600_context *rctx);
509 void r600_suspend_nontimer_queries(struct r600_context *ctx);
510 void r600_resume_nontimer_queries(struct r600_context *ctx);
511 void r600_suspend_timer_queries(struct r600_context *ctx);
512 void r600_resume_timer_queries(struct r600_context *ctx);
513
514 /* r600_resource.c */
515 void r600_init_context_resource_functions(struct r600_context *r600);
516
517 /* r600_shader.c */
518 int r600_pipe_shader_create(struct pipe_context *ctx, struct r600_pipe_shader *shader);
519 #ifdef HAVE_OPENCL
520 int r600_compute_shader_create(struct pipe_context * ctx,
521 LLVMModuleRef mod, struct r600_bytecode * bytecode);
522 #endif
523 void r600_pipe_shader_destroy(struct pipe_context *ctx, struct r600_pipe_shader *shader);
524
525 /* r600_state.c */
526 void r600_set_scissor_state(struct r600_context *rctx,
527 const struct pipe_scissor_state *state);
528 void r600_init_state_functions(struct r600_context *rctx);
529 void r600_init_atom_start_cs(struct r600_context *rctx);
530 void r600_pipe_shader_ps(struct pipe_context *ctx, struct r600_pipe_shader *shader);
531 void r600_pipe_shader_vs(struct pipe_context *ctx, struct r600_pipe_shader *shader);
532 void r600_fetch_shader(struct pipe_context *ctx, struct r600_vertex_element *ve);
533 void *r600_create_db_flush_dsa(struct r600_context *rctx);
534 void r600_polygon_offset_update(struct r600_context *rctx);
535 void r600_adjust_gprs(struct r600_context *rctx);
536 boolean r600_is_format_supported(struct pipe_screen *screen,
537 enum pipe_format format,
538 enum pipe_texture_target target,
539 unsigned sample_count,
540 unsigned usage);
541 void r600_update_dual_export_state(struct r600_context * rctx);
542
543 /* r600_texture.c */
544 void r600_init_screen_texture_functions(struct pipe_screen *screen);
545 void r600_init_surface_functions(struct r600_context *r600);
546 uint32_t r600_translate_texformat(struct pipe_screen *screen, enum pipe_format format,
547 const unsigned char *swizzle_view,
548 uint32_t *word4_p, uint32_t *yuv_format_p);
549 unsigned r600_texture_get_offset(struct r600_resource_texture *rtex,
550 unsigned level, unsigned layer);
551
552 /* r600_translate.c */
553 void r600_translate_index_buffer(struct r600_context *r600,
554 struct pipe_index_buffer *ib,
555 unsigned count);
556
557 /* r600_state_common.c */
558 void r600_init_atom(struct r600_atom *atom,
559 void (*emit)(struct r600_context *ctx, struct r600_atom *state),
560 unsigned num_dw, enum r600_atom_flags flags);
561 void r600_init_common_atoms(struct r600_context *rctx);
562 unsigned r600_get_cb_flush_flags(struct r600_context *rctx);
563 void r600_texture_barrier(struct pipe_context *ctx);
564 void r600_set_index_buffer(struct pipe_context *ctx,
565 const struct pipe_index_buffer *ib);
566 void r600_vertex_buffers_dirty(struct r600_context *rctx);
567 void r600_set_vertex_buffers(struct pipe_context *ctx, unsigned count,
568 const struct pipe_vertex_buffer *input);
569 void r600_sampler_views_dirty(struct r600_context *rctx,
570 struct r600_samplerview_state *state);
571 void r600_set_sampler_views(struct r600_context *rctx,
572 struct r600_textures_info *dst,
573 unsigned count,
574 struct pipe_sampler_view **views);
575 void r600_bind_vs_samplers(struct pipe_context *ctx, unsigned count, void **states);
576 void r600_bind_ps_samplers(struct pipe_context *ctx, unsigned count, void **states);
577 void *r600_create_vertex_elements(struct pipe_context *ctx,
578 unsigned count,
579 const struct pipe_vertex_element *elements);
580 void r600_delete_vertex_element(struct pipe_context *ctx, void *state);
581 void r600_bind_blend_state(struct pipe_context *ctx, void *state);
582 void r600_set_blend_color(struct pipe_context *ctx,
583 const struct pipe_blend_color *state);
584 void r600_bind_dsa_state(struct pipe_context *ctx, void *state);
585 void r600_set_max_scissor(struct r600_context *rctx);
586 void r600_bind_rs_state(struct pipe_context *ctx, void *state);
587 void r600_delete_rs_state(struct pipe_context *ctx, void *state);
588 void r600_sampler_view_destroy(struct pipe_context *ctx,
589 struct pipe_sampler_view *state);
590 void r600_delete_sampler(struct pipe_context *ctx, void *state);
591 void r600_delete_state(struct pipe_context *ctx, void *state);
592 void r600_bind_vertex_elements(struct pipe_context *ctx, void *state);
593 void *r600_create_shader_state_ps(struct pipe_context *ctx,
594 const struct pipe_shader_state *state);
595 void *r600_create_shader_state_vs(struct pipe_context *ctx,
596 const struct pipe_shader_state *state);
597 void r600_bind_ps_shader(struct pipe_context *ctx, void *state);
598 void r600_bind_vs_shader(struct pipe_context *ctx, void *state);
599 void r600_delete_ps_shader(struct pipe_context *ctx, void *state);
600 void r600_delete_vs_shader(struct pipe_context *ctx, void *state);
601 void r600_constant_buffers_dirty(struct r600_context *rctx, struct r600_constbuf_state *state);
602 void r600_set_constant_buffer(struct pipe_context *ctx, uint shader, uint index,
603 struct pipe_constant_buffer *cb);
604 struct pipe_stream_output_target *
605 r600_create_so_target(struct pipe_context *ctx,
606 struct pipe_resource *buffer,
607 unsigned buffer_offset,
608 unsigned buffer_size);
609 void r600_so_target_destroy(struct pipe_context *ctx,
610 struct pipe_stream_output_target *target);
611 void r600_set_so_targets(struct pipe_context *ctx,
612 unsigned num_targets,
613 struct pipe_stream_output_target **targets,
614 unsigned append_bitmask);
615 void r600_set_sample_mask(struct pipe_context *pipe, unsigned sample_mask);
616 void r600_set_pipe_stencil_ref(struct pipe_context *ctx,
617 const struct pipe_stencil_ref *state);
618 void r600_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info);
619 uint32_t r600_translate_stencil_op(int s_op);
620 uint32_t r600_translate_fill(uint32_t func);
621 unsigned r600_tex_wrap(unsigned wrap);
622 unsigned r600_tex_filter(unsigned filter);
623 unsigned r600_tex_mipfilter(unsigned filter);
624 unsigned r600_tex_compare(unsigned compare);
625
626 /*
627 * Helpers for building command buffers
628 */
629
630 #define PKT3_SET_CONFIG_REG 0x68
631 #define PKT3_SET_CONTEXT_REG 0x69
632 #define PKT3_SET_CTL_CONST 0x6F
633 #define PKT3_SET_LOOP_CONST 0x6C
634
635 #define R600_CONFIG_REG_OFFSET 0x08000
636 #define R600_CONTEXT_REG_OFFSET 0x28000
637 #define R600_CTL_CONST_OFFSET 0x3CFF0
638 #define R600_LOOP_CONST_OFFSET 0X0003E200
639 #define EG_LOOP_CONST_OFFSET 0x0003A200
640
641 #define PKT_TYPE_S(x) (((x) & 0x3) << 30)
642 #define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
643 #define PKT3_IT_OPCODE_S(x) (((x) & 0xFF) << 8)
644 #define PKT3_PREDICATE(x) (((x) >> 0) & 0x1)
645 #define PKT3(op, count, predicate) (PKT_TYPE_S(3) | PKT_COUNT_S(count) | PKT3_IT_OPCODE_S(op) | PKT3_PREDICATE(predicate))
646
647 #define RADEON_CP_PACKET3_COMPUTE_MODE 0x00000002
648
649 /*Evergreen Compute packet3*/
650 #define PKT3C(op, count, predicate) (PKT_TYPE_S(3) | PKT3_IT_OPCODE_S(op) | PKT_COUNT_S(count) | PKT3_PREDICATE(predicate) | RADEON_CP_PACKET3_COMPUTE_MODE)
651
652 static INLINE void r600_store_value(struct r600_command_buffer *cb, unsigned value)
653 {
654 cb->buf[cb->atom.num_dw++] = value;
655 }
656
657 static INLINE void r600_store_config_reg_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
658 {
659 assert(reg < R600_CONTEXT_REG_OFFSET);
660 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
661 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CONFIG_REG, num, 0);
662 cb->buf[cb->atom.num_dw++] = (reg - R600_CONFIG_REG_OFFSET) >> 2;
663 }
664
665 /**
666 * Needs cb->pkt_flags set to RADEON_CP_PACKET3_COMPUTE_MODE for compute
667 * shaders.
668 */
669 static INLINE void r600_store_context_reg_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
670 {
671 assert(reg >= R600_CONTEXT_REG_OFFSET && reg < R600_CTL_CONST_OFFSET);
672 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
673 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CONTEXT_REG, num, 0) | cb->pkt_flags;
674 cb->buf[cb->atom.num_dw++] = (reg - R600_CONTEXT_REG_OFFSET) >> 2;
675 }
676
677 /**
678 * Needs cb->pkt_flags set to RADEON_CP_PACKET3_COMPUTE_MODE for compute
679 * shaders.
680 */
681 static INLINE void r600_store_ctl_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
682 {
683 assert(reg >= R600_CTL_CONST_OFFSET);
684 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
685 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CTL_CONST, num, 0) | cb->pkt_flags;
686 cb->buf[cb->atom.num_dw++] = (reg - R600_CTL_CONST_OFFSET) >> 2;
687 }
688
689 static INLINE void r600_store_loop_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
690 {
691 assert(reg >= R600_LOOP_CONST_OFFSET);
692 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
693 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_LOOP_CONST, num, 0);
694 cb->buf[cb->atom.num_dw++] = (reg - R600_LOOP_CONST_OFFSET) >> 2;
695 }
696
697 /**
698 * Needs cb->pkt_flags set to RADEON_CP_PACKET3_COMPUTE_MODE for compute
699 * shaders.
700 */
701 static INLINE void eg_store_loop_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
702 {
703 assert(reg >= EG_LOOP_CONST_OFFSET);
704 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
705 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_LOOP_CONST, num, 0) | cb->pkt_flags;
706 cb->buf[cb->atom.num_dw++] = (reg - EG_LOOP_CONST_OFFSET) >> 2;
707 }
708
709 static INLINE void r600_store_config_reg(struct r600_command_buffer *cb, unsigned reg, unsigned value)
710 {
711 r600_store_config_reg_seq(cb, reg, 1);
712 r600_store_value(cb, value);
713 }
714
715 static INLINE void r600_store_context_reg(struct r600_command_buffer *cb, unsigned reg, unsigned value)
716 {
717 r600_store_context_reg_seq(cb, reg, 1);
718 r600_store_value(cb, value);
719 }
720
721 static INLINE void r600_store_ctl_const(struct r600_command_buffer *cb, unsigned reg, unsigned value)
722 {
723 r600_store_ctl_const_seq(cb, reg, 1);
724 r600_store_value(cb, value);
725 }
726
727 static INLINE void r600_store_loop_const(struct r600_command_buffer *cb, unsigned reg, unsigned value)
728 {
729 r600_store_loop_const_seq(cb, reg, 1);
730 r600_store_value(cb, value);
731 }
732
733 static INLINE void eg_store_loop_const(struct r600_command_buffer *cb, unsigned reg, unsigned value)
734 {
735 eg_store_loop_const_seq(cb, reg, 1);
736 r600_store_value(cb, value);
737 }
738
739 void r600_init_command_buffer(struct r600_command_buffer *cb, unsigned num_dw, enum r600_atom_flags flags);
740 void r600_release_command_buffer(struct r600_command_buffer *cb);
741
742 /*
743 * Helpers for emitting state into a command stream directly.
744 */
745
746 static INLINE unsigned r600_context_bo_reloc(struct r600_context *ctx, struct r600_resource *rbo,
747 enum radeon_bo_usage usage)
748 {
749 assert(usage);
750 return ctx->ws->cs_add_reloc(ctx->cs, rbo->cs_buf, usage, rbo->domains) * 4;
751 }
752
753 static INLINE void r600_write_value(struct radeon_winsys_cs *cs, unsigned value)
754 {
755 cs->buf[cs->cdw++] = value;
756 }
757
758 static INLINE void r600_write_array(struct radeon_winsys_cs *cs, unsigned num, unsigned *ptr)
759 {
760 assert(cs->cdw+num <= RADEON_MAX_CMDBUF_DWORDS);
761 memcpy(&cs->buf[cs->cdw], ptr, num * sizeof(ptr[0]));
762 cs->cdw += num;
763 }
764
765 static INLINE void r600_write_config_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num)
766 {
767 assert(reg < R600_CONTEXT_REG_OFFSET);
768 assert(cs->cdw+2+num <= RADEON_MAX_CMDBUF_DWORDS);
769 cs->buf[cs->cdw++] = PKT3(PKT3_SET_CONFIG_REG, num, 0);
770 cs->buf[cs->cdw++] = (reg - R600_CONFIG_REG_OFFSET) >> 2;
771 }
772
773 static INLINE void r600_write_context_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num)
774 {
775 assert(reg >= R600_CONTEXT_REG_OFFSET && reg < R600_CTL_CONST_OFFSET);
776 assert(cs->cdw+2+num <= RADEON_MAX_CMDBUF_DWORDS);
777 cs->buf[cs->cdw++] = PKT3(PKT3_SET_CONTEXT_REG, num, 0);
778 cs->buf[cs->cdw++] = (reg - R600_CONTEXT_REG_OFFSET) >> 2;
779 }
780
781 static INLINE void r600_write_compute_context_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num)
782 {
783 r600_write_context_reg_seq(cs, reg, num);
784 /* Set the compute bit on the packet header */
785 cs->buf[cs->cdw - 2] |= RADEON_CP_PACKET3_COMPUTE_MODE;
786 }
787
788 static INLINE void r600_write_ctl_const_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num)
789 {
790 assert(reg >= R600_CTL_CONST_OFFSET);
791 assert(cs->cdw+2+num <= RADEON_MAX_CMDBUF_DWORDS);
792 cs->buf[cs->cdw++] = PKT3(PKT3_SET_CTL_CONST, num, 0);
793 cs->buf[cs->cdw++] = (reg - R600_CTL_CONST_OFFSET) >> 2;
794 }
795
796 static INLINE void r600_write_config_reg(struct radeon_winsys_cs *cs, unsigned reg, unsigned value)
797 {
798 r600_write_config_reg_seq(cs, reg, 1);
799 r600_write_value(cs, value);
800 }
801
802 static INLINE void r600_write_context_reg(struct radeon_winsys_cs *cs, unsigned reg, unsigned value)
803 {
804 r600_write_context_reg_seq(cs, reg, 1);
805 r600_write_value(cs, value);
806 }
807
808 static INLINE void r600_write_compute_context_reg(struct radeon_winsys_cs *cs, unsigned reg, unsigned value)
809 {
810 r600_write_compute_context_reg_seq(cs, reg, 1);
811 r600_write_value(cs, value);
812 }
813
814 static INLINE void r600_write_ctl_const(struct radeon_winsys_cs *cs, unsigned reg, unsigned value)
815 {
816 r600_write_ctl_const_seq(cs, reg, 1);
817 r600_write_value(cs, value);
818 }
819
820 /*
821 * common helpers
822 */
823 static INLINE uint32_t S_FIXED(float value, uint32_t frac_bits)
824 {
825 return value * (1 << frac_bits);
826 }
827 #define ALIGN_DIVUP(x, y) (((x) + (y) - 1) / (y))
828
829 static inline unsigned r600_tex_aniso_filter(unsigned filter)
830 {
831 if (filter <= 1) return 0;
832 if (filter <= 2) return 1;
833 if (filter <= 4) return 2;
834 if (filter <= 8) return 3;
835 /* else */ return 4;
836 }
837
838 /* 12.4 fixed-point */
839 static INLINE unsigned r600_pack_float_12p4(float x)
840 {
841 return x <= 0 ? 0 :
842 x >= 4096 ? 0xffff : x * 16;
843 }
844
845 static INLINE uint64_t r600_resource_va(struct pipe_screen *screen, struct pipe_resource *resource)
846 {
847 struct r600_screen *rscreen = (struct r600_screen*)screen;
848 struct r600_resource *rresource = (struct r600_resource*)resource;
849
850 return rscreen->ws->buffer_get_virtual_address(rresource->cs_buf);
851 }
852
853 #endif