9965e2811d0f771776327a0759c0d74d1ec3cc8b
[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_shader.h"
32 #include "r600_resource.h"
33
34 #define R600_MAX_CONST_BUFFERS 2
35 #define R600_MAX_CONST_BUFFER_SIZE 4096
36
37 #ifdef PIPE_ARCH_BIG_ENDIAN
38 #define R600_BIG_ENDIAN 1
39 #else
40 #define R600_BIG_ENDIAN 0
41 #endif
42
43 enum r600_atom_flags {
44 /* When set, atoms are added at the beginning of the dirty list
45 * instead of the end. */
46 EMIT_EARLY = (1 << 0)
47 };
48
49 /* This encapsulates a state or an operation which can emitted into the GPU
50 * command stream. It's not limited to states only, it can be used for anything
51 * that wants to write commands into the CS (e.g. cache flushes). */
52 struct r600_atom {
53 void (*emit)(struct r600_context *ctx, struct r600_atom *state);
54
55 unsigned num_dw;
56 enum r600_atom_flags flags;
57 bool dirty;
58
59 struct list_head head;
60 };
61
62 /* This is an atom containing GPU commands that never change.
63 * This is supposed to be copied directly into the CS. */
64 struct r600_command_buffer {
65 struct r600_atom atom;
66 uint32_t *buf;
67 unsigned max_num_dw;
68 };
69
70 struct r600_surface_sync_cmd {
71 struct r600_atom atom;
72 unsigned flush_flags; /* CP_COHER_CNTL */
73 };
74
75 struct r600_db_misc_state {
76 struct r600_atom atom;
77 bool occlusion_query_enabled;
78 bool flush_depthstencil_enabled;
79 };
80
81 struct r600_eg_streamout_state {
82 struct r600_atom atom;
83 bool rasterizer_discard;
84 bool stream0_enable;
85 };
86
87 enum r600_pipe_state_id {
88 R600_PIPE_STATE_BLEND = 0,
89 R600_PIPE_STATE_BLEND_COLOR,
90 R600_PIPE_STATE_CONFIG,
91 R600_PIPE_STATE_SEAMLESS_CUBEMAP,
92 R600_PIPE_STATE_CLIP,
93 R600_PIPE_STATE_SCISSOR,
94 R600_PIPE_STATE_VIEWPORT,
95 R600_PIPE_STATE_RASTERIZER,
96 R600_PIPE_STATE_VGT,
97 R600_PIPE_STATE_FRAMEBUFFER,
98 R600_PIPE_STATE_DSA,
99 R600_PIPE_STATE_STENCIL_REF,
100 R600_PIPE_STATE_PS_SHADER,
101 R600_PIPE_STATE_VS_SHADER,
102 R600_PIPE_STATE_CONSTANT,
103 R600_PIPE_STATE_SAMPLER,
104 R600_PIPE_STATE_RESOURCE,
105 R600_PIPE_STATE_POLYGON_OFFSET,
106 R600_PIPE_STATE_FETCH_SHADER,
107 R600_PIPE_NSTATES
108 };
109
110 struct r600_pipe_fences {
111 struct r600_resource *bo;
112 unsigned *data;
113 unsigned next_index;
114 /* linked list of preallocated blocks */
115 struct list_head blocks;
116 /* linked list of freed fences */
117 struct list_head pool;
118 pipe_mutex mutex;
119 };
120
121 struct r600_screen {
122 struct pipe_screen screen;
123 struct radeon_winsys *ws;
124 unsigned family;
125 enum chip_class chip_class;
126 struct radeon_info info;
127 struct r600_tiling_info tiling_info;
128 struct util_slab_mempool pool_buffers;
129 struct r600_pipe_fences fences;
130
131 unsigned num_contexts;
132 bool use_surface_alloc;
133
134 /* for thread-safe write accessing to num_contexts */
135 pipe_mutex mutex_num_contexts;
136 };
137
138 struct r600_pipe_sampler_view {
139 struct pipe_sampler_view base;
140 struct r600_pipe_resource_state state;
141 };
142
143 struct r600_pipe_rasterizer {
144 struct r600_pipe_state rstate;
145 boolean flatshade;
146 boolean two_side;
147 unsigned sprite_coord_enable;
148 unsigned clip_plane_enable;
149 unsigned pa_sc_line_stipple;
150 unsigned pa_cl_clip_cntl;
151 float offset_units;
152 float offset_scale;
153 bool scissor_enable;
154 bool rasterizer_discard;
155 };
156
157 struct r600_pipe_blend {
158 struct r600_pipe_state rstate;
159 unsigned cb_target_mask;
160 unsigned cb_color_control;
161 };
162
163 struct r600_pipe_dsa {
164 struct r600_pipe_state rstate;
165 unsigned alpha_ref;
166 ubyte valuemask[2];
167 ubyte writemask[2];
168 bool is_flush;
169 };
170
171 struct r600_vertex_element
172 {
173 unsigned count;
174 struct pipe_vertex_element elements[PIPE_MAX_ATTRIBS];
175 struct u_vbuf_elements *vmgr_elements;
176 struct r600_resource *fetch_shader;
177 unsigned fs_size;
178 struct r600_pipe_state rstate;
179 /* if offset is to big for fetch instructio we need to alterate
180 * offset of vertex buffer, record here the offset need to add
181 */
182 unsigned vbuffer_need_offset;
183 unsigned vbuffer_offset[PIPE_MAX_ATTRIBS];
184 };
185
186 struct r600_pipe_shader {
187 struct r600_shader shader;
188 struct r600_pipe_state rstate;
189 struct r600_resource *bo;
190 struct r600_resource *bo_fetch;
191 struct r600_vertex_element vertex_elements;
192 struct tgsi_token *tokens;
193 unsigned sprite_coord_enable;
194 unsigned flatshade;
195 unsigned pa_cl_vs_out_cntl;
196 struct pipe_stream_output_info so;
197 };
198
199 struct r600_pipe_sampler_state {
200 struct r600_pipe_state rstate;
201 boolean seamless_cube_map;
202 };
203
204 /* needed for blitter save */
205 #define NUM_TEX_UNITS 16
206
207 struct r600_textures_info {
208 struct r600_pipe_sampler_view *views[NUM_TEX_UNITS];
209 struct r600_pipe_sampler_state *samplers[NUM_TEX_UNITS];
210 unsigned n_views;
211 unsigned n_samplers;
212 bool samplers_dirty;
213 bool is_array_sampler[NUM_TEX_UNITS];
214 };
215
216 struct r600_fence {
217 struct pipe_reference reference;
218 unsigned index; /* in the shared bo */
219 struct r600_resource *sleep_bo;
220 struct list_head head;
221 };
222
223 #define FENCE_BLOCK_SIZE 16
224
225 struct r600_fence_block {
226 struct r600_fence fences[FENCE_BLOCK_SIZE];
227 struct list_head head;
228 };
229
230 #define R600_CONSTANT_ARRAY_SIZE 256
231 #define R600_RESOURCE_ARRAY_SIZE 160
232
233 struct r600_stencil_ref
234 {
235 ubyte ref_value[2];
236 ubyte valuemask[2];
237 ubyte writemask[2];
238 };
239
240 struct r600_context {
241 struct pipe_context context;
242 struct blitter_context *blitter;
243 enum radeon_family family;
244 enum chip_class chip_class;
245 unsigned r6xx_num_clause_temp_gprs;
246 void *custom_dsa_flush;
247 struct r600_screen *screen;
248 struct radeon_winsys *ws;
249 struct r600_pipe_state *states[R600_PIPE_NSTATES];
250 struct r600_vertex_element *vertex_elements;
251 struct r600_pipe_resource_state fs_resource[PIPE_MAX_ATTRIBS];
252 struct pipe_framebuffer_state framebuffer;
253 unsigned cb_target_mask;
254 unsigned cb_color_control;
255 unsigned pa_sc_line_stipple;
256 unsigned pa_cl_clip_cntl;
257 /* for saving when using blitter */
258 struct pipe_stencil_ref stencil_ref;
259 struct pipe_viewport_state viewport;
260 struct pipe_clip_state clip;
261 struct r600_pipe_shader *ps_shader;
262 struct r600_pipe_shader *vs_shader;
263 struct r600_pipe_state vs_const_buffer;
264 struct r600_pipe_resource_state vs_const_buffer_resource[R600_MAX_CONST_BUFFERS];
265 struct r600_pipe_state ps_const_buffer;
266 struct r600_pipe_resource_state ps_const_buffer_resource[R600_MAX_CONST_BUFFERS];
267 struct r600_pipe_rasterizer *rasterizer;
268 struct r600_pipe_state vgt;
269 struct r600_pipe_state spi;
270 struct pipe_query *current_render_cond;
271 unsigned current_render_cond_mode;
272 struct pipe_query *saved_render_cond;
273 unsigned saved_render_cond_mode;
274 /* shader information */
275 boolean two_side;
276 unsigned sprite_coord_enable;
277 boolean export_16bpc;
278 unsigned alpha_ref;
279 boolean alpha_ref_dirty;
280 unsigned nr_cbufs;
281 struct r600_textures_info vs_samplers;
282 struct r600_textures_info ps_samplers;
283
284 struct u_vbuf *vbuf_mgr;
285 struct util_slab_mempool pool_transfers;
286 boolean have_depth_texture, have_depth_fb;
287
288 unsigned default_ps_gprs, default_vs_gprs;
289
290 /* States based on r600_atom. */
291 struct list_head dirty_states;
292 struct r600_command_buffer start_cs_cmd; /* invariant state mostly */
293 struct r600_surface_sync_cmd surface_sync_cmd;
294 struct r600_atom r6xx_flush_and_inv_cmd;
295 struct r600_db_misc_state db_misc_state;
296 struct r600_eg_streamout_state eg_streamout_state;
297
298 /* Below are variables from the old r600_context.
299 */
300 struct radeon_winsys_cs *cs;
301
302 struct r600_range *range;
303 unsigned nblocks;
304 struct r600_block **blocks;
305 struct list_head dirty;
306 struct list_head resource_dirty;
307 struct list_head enable_list;
308 unsigned pm4_dirty_cdwords;
309 unsigned ctx_pm4_ndwords;
310
311 /* The list of active queries. Only one query of each type can be active. */
312 int num_occlusion_queries;
313
314 /* Manage queries in two separate groups:
315 * The timer ones and the others (streamout, occlusion).
316 *
317 * We do this because we should only suspend non-timer queries for u_blitter,
318 * and later if the non-timer queries are suspended, the context flush should
319 * only suspend and resume the timer queries. */
320 struct list_head active_timer_queries;
321 unsigned num_cs_dw_timer_queries_suspend;
322 struct list_head active_nontimer_queries;
323 unsigned num_cs_dw_nontimer_queries_suspend;
324
325 unsigned num_cs_dw_streamout_end;
326
327 unsigned backend_mask;
328 unsigned max_db; /* for OQ */
329 unsigned flags;
330 boolean predicate_drawing;
331 struct r600_range ps_resources;
332 struct r600_range vs_resources;
333 struct r600_range fs_resources;
334 int num_ps_resources, num_vs_resources, num_fs_resources;
335
336 unsigned num_so_targets;
337 struct r600_so_target *so_targets[PIPE_MAX_SO_BUFFERS];
338 boolean streamout_start;
339 unsigned streamout_append_bitmask;
340
341 /* There is no scissor enable bit on r6xx, so we must use a workaround.
342 * These track the current scissor state. */
343 bool scissor_enable;
344 struct pipe_scissor_state scissor_state;
345
346 /* With rasterizer discard, there doesn't have to be a pixel shader.
347 * In that case, we bind this one: */
348 void *dummy_pixel_shader;
349 };
350
351 static INLINE void r600_emit_atom(struct r600_context *rctx, struct r600_atom *atom)
352 {
353 atom->emit(rctx, atom);
354 atom->dirty = false;
355 if (atom->head.next && atom->head.prev)
356 LIST_DELINIT(&atom->head);
357 }
358
359 static INLINE void r600_atom_dirty(struct r600_context *rctx, struct r600_atom *state)
360 {
361 if (!state->dirty) {
362 if (state->flags & EMIT_EARLY) {
363 LIST_ADD(&state->head, &rctx->dirty_states);
364 } else {
365 LIST_ADDTAIL(&state->head, &rctx->dirty_states);
366 }
367 state->dirty = true;
368 }
369 }
370
371 /* evergreen_state.c */
372 void evergreen_init_state_functions(struct r600_context *rctx);
373 void evergreen_init_atom_start_cs(struct r600_context *rctx);
374 void evergreen_pipe_shader_ps(struct pipe_context *ctx, struct r600_pipe_shader *shader);
375 void evergreen_pipe_shader_vs(struct pipe_context *ctx, struct r600_pipe_shader *shader);
376 void evergreen_fetch_shader(struct pipe_context *ctx, struct r600_vertex_element *ve);
377 void *evergreen_create_db_flush_dsa(struct r600_context *rctx);
378 void evergreen_polygon_offset_update(struct r600_context *rctx);
379 void evergreen_pipe_init_buffer_resource(struct r600_context *rctx,
380 struct r600_pipe_resource_state *rstate);
381 void evergreen_pipe_mod_buffer_resource(struct pipe_context *ctx,
382 struct r600_pipe_resource_state *rstate,
383 struct r600_resource *rbuffer,
384 unsigned offset, unsigned stride,
385 enum radeon_bo_usage usage);
386 boolean evergreen_is_format_supported(struct pipe_screen *screen,
387 enum pipe_format format,
388 enum pipe_texture_target target,
389 unsigned sample_count,
390 unsigned usage);
391 void evergreen_set_rasterizer_discard(struct pipe_context *ctx, boolean discard);
392
393 /* r600_blit.c */
394 void r600_init_blit_functions(struct r600_context *rctx);
395 void r600_blit_uncompress_depth(struct pipe_context *ctx, struct r600_resource_texture *texture);
396 void r600_blit_push_depth(struct pipe_context *ctx, struct r600_resource_texture *texture);
397 void r600_flush_depth_textures(struct r600_context *rctx);
398
399 /* r600_buffer.c */
400 bool r600_init_resource(struct r600_screen *rscreen,
401 struct r600_resource *res,
402 unsigned size, unsigned alignment,
403 unsigned bind, unsigned usage);
404 struct pipe_resource *r600_buffer_create(struct pipe_screen *screen,
405 const struct pipe_resource *templ);
406 struct pipe_resource *r600_user_buffer_create(struct pipe_screen *screen,
407 void *ptr, unsigned bytes,
408 unsigned bind);
409 void r600_upload_index_buffer(struct r600_context *rctx,
410 struct pipe_index_buffer *ib, unsigned count);
411
412
413 /* r600_pipe.c */
414 void r600_flush(struct pipe_context *ctx, struct pipe_fence_handle **fence,
415 unsigned flags);
416
417 /* r600_query.c */
418 void r600_init_query_functions(struct r600_context *rctx);
419 void r600_suspend_nontimer_queries(struct r600_context *ctx);
420 void r600_resume_nontimer_queries(struct r600_context *ctx);
421 void r600_suspend_timer_queries(struct r600_context *ctx);
422 void r600_resume_timer_queries(struct r600_context *ctx);
423
424 /* r600_resource.c */
425 void r600_init_context_resource_functions(struct r600_context *r600);
426
427 /* r600_shader.c */
428 int r600_pipe_shader_create(struct pipe_context *ctx, struct r600_pipe_shader *shader);
429 void r600_pipe_shader_destroy(struct pipe_context *ctx, struct r600_pipe_shader *shader);
430 int r600_find_vs_semantic_index(struct r600_shader *vs,
431 struct r600_shader *ps, int id);
432
433 /* r600_state.c */
434 void r600_set_scissor_state(struct r600_context *rctx,
435 const struct pipe_scissor_state *state);
436 void r600_update_sampler_states(struct r600_context *rctx);
437 void r600_init_state_functions(struct r600_context *rctx);
438 void r600_init_atom_start_cs(struct r600_context *rctx);
439 void r600_pipe_shader_ps(struct pipe_context *ctx, struct r600_pipe_shader *shader);
440 void r600_pipe_shader_vs(struct pipe_context *ctx, struct r600_pipe_shader *shader);
441 void r600_fetch_shader(struct pipe_context *ctx, struct r600_vertex_element *ve);
442 void *r600_create_db_flush_dsa(struct r600_context *rctx);
443 void r600_polygon_offset_update(struct r600_context *rctx);
444 void r600_pipe_init_buffer_resource(struct r600_context *rctx,
445 struct r600_pipe_resource_state *rstate);
446 void r600_pipe_mod_buffer_resource(struct r600_pipe_resource_state *rstate,
447 struct r600_resource *rbuffer,
448 unsigned offset, unsigned stride,
449 enum radeon_bo_usage usage);
450 void r600_adjust_gprs(struct r600_context *rctx);
451 boolean r600_is_format_supported(struct pipe_screen *screen,
452 enum pipe_format format,
453 enum pipe_texture_target target,
454 unsigned sample_count,
455 unsigned usage);
456
457 /* r600_texture.c */
458 void r600_init_screen_texture_functions(struct pipe_screen *screen);
459 void r600_init_surface_functions(struct r600_context *r600);
460 uint32_t r600_translate_texformat(struct pipe_screen *screen, enum pipe_format format,
461 const unsigned char *swizzle_view,
462 uint32_t *word4_p, uint32_t *yuv_format_p);
463 unsigned r600_texture_get_offset(struct r600_resource_texture *rtex,
464 unsigned level, unsigned layer);
465
466 /* r600_translate.c */
467 void r600_translate_index_buffer(struct r600_context *r600,
468 struct pipe_index_buffer *ib,
469 unsigned count);
470
471 /* r600_state_common.c */
472 void r600_init_atom(struct r600_atom *atom,
473 void (*emit)(struct r600_context *ctx, struct r600_atom *state),
474 unsigned num_dw, enum r600_atom_flags flags);
475 void r600_init_common_atoms(struct r600_context *rctx);
476 unsigned r600_get_cb_flush_flags(struct r600_context *rctx);
477 void r600_texture_barrier(struct pipe_context *ctx);
478 void r600_set_index_buffer(struct pipe_context *ctx,
479 const struct pipe_index_buffer *ib);
480 void r600_set_vertex_buffers(struct pipe_context *ctx, unsigned count,
481 const struct pipe_vertex_buffer *buffers);
482 void *r600_create_vertex_elements(struct pipe_context *ctx,
483 unsigned count,
484 const struct pipe_vertex_element *elements);
485 void r600_delete_vertex_element(struct pipe_context *ctx, void *state);
486 void r600_bind_blend_state(struct pipe_context *ctx, void *state);
487 void r600_set_blend_color(struct pipe_context *ctx,
488 const struct pipe_blend_color *state);
489 void r600_bind_dsa_state(struct pipe_context *ctx, void *state);
490 void r600_set_max_scissor(struct r600_context *rctx);
491 void r600_bind_rs_state(struct pipe_context *ctx, void *state);
492 void r600_delete_rs_state(struct pipe_context *ctx, void *state);
493 void r600_sampler_view_destroy(struct pipe_context *ctx,
494 struct pipe_sampler_view *state);
495 void r600_delete_state(struct pipe_context *ctx, void *state);
496 void r600_bind_vertex_elements(struct pipe_context *ctx, void *state);
497 void *r600_create_shader_state(struct pipe_context *ctx,
498 const struct pipe_shader_state *state);
499 void r600_bind_ps_shader(struct pipe_context *ctx, void *state);
500 void r600_bind_vs_shader(struct pipe_context *ctx, void *state);
501 void r600_delete_ps_shader(struct pipe_context *ctx, void *state);
502 void r600_delete_vs_shader(struct pipe_context *ctx, void *state);
503 void r600_set_constant_buffer(struct pipe_context *ctx, uint shader, uint index,
504 struct pipe_resource *buffer);
505 struct pipe_stream_output_target *
506 r600_create_so_target(struct pipe_context *ctx,
507 struct pipe_resource *buffer,
508 unsigned buffer_offset,
509 unsigned buffer_size);
510 void r600_so_target_destroy(struct pipe_context *ctx,
511 struct pipe_stream_output_target *target);
512 void r600_set_so_targets(struct pipe_context *ctx,
513 unsigned num_targets,
514 struct pipe_stream_output_target **targets,
515 unsigned append_bitmask);
516 void r600_set_pipe_stencil_ref(struct pipe_context *ctx,
517 const struct pipe_stencil_ref *state);
518 void r600_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info);
519 uint32_t r600_translate_stencil_op(int s_op);
520 uint32_t r600_translate_fill(uint32_t func);
521 unsigned r600_tex_wrap(unsigned wrap);
522 unsigned r600_tex_filter(unsigned filter);
523 unsigned r600_tex_mipfilter(unsigned filter);
524 unsigned r600_tex_compare(unsigned compare);
525
526 /*
527 * Helpers for building command buffers
528 */
529
530 #define PKT3_SET_CONFIG_REG 0x68
531 #define PKT3_SET_CONTEXT_REG 0x69
532 #define PKT3_SET_CTL_CONST 0x6F
533 #define PKT3_SET_LOOP_CONST 0x6C
534
535 #define R600_CONFIG_REG_OFFSET 0x08000
536 #define R600_CONTEXT_REG_OFFSET 0x28000
537 #define R600_CTL_CONST_OFFSET 0x3CFF0
538 #define R600_LOOP_CONST_OFFSET 0X0003E200
539 #define EG_LOOP_CONST_OFFSET 0x0003A200
540
541 #define PKT_TYPE_S(x) (((x) & 0x3) << 30)
542 #define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
543 #define PKT3_IT_OPCODE_S(x) (((x) & 0xFF) << 8)
544 #define PKT3_PREDICATE(x) (((x) >> 0) & 0x1)
545 #define PKT3(op, count, predicate) (PKT_TYPE_S(3) | PKT_COUNT_S(count) | PKT3_IT_OPCODE_S(op) | PKT3_PREDICATE(predicate))
546
547 static INLINE void r600_store_value(struct r600_command_buffer *cb, unsigned value)
548 {
549 cb->buf[cb->atom.num_dw++] = value;
550 }
551
552 static INLINE void r600_store_config_reg_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
553 {
554 assert(reg < R600_CONTEXT_REG_OFFSET);
555 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
556 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CONFIG_REG, num, 0);
557 cb->buf[cb->atom.num_dw++] = (reg - R600_CONFIG_REG_OFFSET) >> 2;
558 }
559
560 static INLINE void r600_store_context_reg_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
561 {
562 assert(reg >= R600_CONTEXT_REG_OFFSET && reg < R600_CTL_CONST_OFFSET);
563 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
564 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CONTEXT_REG, num, 0);
565 cb->buf[cb->atom.num_dw++] = (reg - R600_CONTEXT_REG_OFFSET) >> 2;
566 }
567
568 static INLINE void r600_store_ctl_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
569 {
570 assert(reg >= R600_CTL_CONST_OFFSET);
571 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
572 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_CTL_CONST, num, 0);
573 cb->buf[cb->atom.num_dw++] = (reg - R600_CTL_CONST_OFFSET) >> 2;
574 }
575
576 static INLINE void r600_store_loop_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
577 {
578 assert(reg >= R600_LOOP_CONST_OFFSET);
579 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
580 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_LOOP_CONST, num, 0);
581 cb->buf[cb->atom.num_dw++] = (reg - R600_LOOP_CONST_OFFSET) >> 2;
582 }
583
584 static INLINE void eg_store_loop_const_seq(struct r600_command_buffer *cb, unsigned reg, unsigned num)
585 {
586 assert(reg >= EG_LOOP_CONST_OFFSET);
587 assert(cb->atom.num_dw+2+num <= cb->max_num_dw);
588 cb->buf[cb->atom.num_dw++] = PKT3(PKT3_SET_LOOP_CONST, num, 0);
589 cb->buf[cb->atom.num_dw++] = (reg - EG_LOOP_CONST_OFFSET) >> 2;
590 }
591
592 static INLINE void r600_store_config_reg(struct r600_command_buffer *cb, unsigned reg, unsigned value)
593 {
594 r600_store_config_reg_seq(cb, reg, 1);
595 r600_store_value(cb, value);
596 }
597
598 static INLINE void r600_store_context_reg(struct r600_command_buffer *cb, unsigned reg, unsigned value)
599 {
600 r600_store_context_reg_seq(cb, reg, 1);
601 r600_store_value(cb, value);
602 }
603
604 static INLINE void r600_store_ctl_const(struct r600_command_buffer *cb, unsigned reg, unsigned value)
605 {
606 r600_store_ctl_const_seq(cb, reg, 1);
607 r600_store_value(cb, value);
608 }
609
610 static INLINE void r600_store_loop_const(struct r600_command_buffer *cb, unsigned reg, unsigned value)
611 {
612 r600_store_loop_const_seq(cb, reg, 1);
613 r600_store_value(cb, value);
614 }
615
616 static INLINE void eg_store_loop_const(struct r600_command_buffer *cb, unsigned reg, unsigned value)
617 {
618 eg_store_loop_const_seq(cb, reg, 1);
619 r600_store_value(cb, value);
620 }
621
622 void r600_init_command_buffer(struct r600_command_buffer *cb, unsigned num_dw, enum r600_atom_flags flags);
623 void r600_release_command_buffer(struct r600_command_buffer *cb);
624
625 /*
626 * Helpers for emitting state into a command stream directly.
627 */
628
629 static INLINE unsigned r600_context_bo_reloc(struct r600_context *ctx, struct r600_resource *rbo,
630 enum radeon_bo_usage usage)
631 {
632 assert(usage);
633 return ctx->ws->cs_add_reloc(ctx->cs, rbo->cs_buf, usage, rbo->domains) * 4;
634 }
635
636 static INLINE void r600_write_value(struct radeon_winsys_cs *cs, unsigned value)
637 {
638 cs->buf[cs->cdw++] = value;
639 }
640
641 static INLINE void r600_write_config_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num)
642 {
643 assert(reg < R600_CONTEXT_REG_OFFSET);
644 assert(cs->cdw+2+num <= RADEON_MAX_CMDBUF_DWORDS);
645 cs->buf[cs->cdw++] = PKT3(PKT3_SET_CONFIG_REG, num, 0);
646 cs->buf[cs->cdw++] = (reg - R600_CONFIG_REG_OFFSET) >> 2;
647 }
648
649 static INLINE void r600_write_context_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num)
650 {
651 assert(reg >= R600_CONTEXT_REG_OFFSET && reg < R600_CTL_CONST_OFFSET);
652 assert(cs->cdw+2+num <= RADEON_MAX_CMDBUF_DWORDS);
653 cs->buf[cs->cdw++] = PKT3(PKT3_SET_CONTEXT_REG, num, 0);
654 cs->buf[cs->cdw++] = (reg - R600_CONTEXT_REG_OFFSET) >> 2;
655 }
656
657 static INLINE void r600_write_ctl_const_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num)
658 {
659 assert(reg >= R600_CTL_CONST_OFFSET);
660 assert(cs->cdw+2+num <= RADEON_MAX_CMDBUF_DWORDS);
661 cs->buf[cs->cdw++] = PKT3(PKT3_SET_CTL_CONST, num, 0);
662 cs->buf[cs->cdw++] = (reg - R600_CTL_CONST_OFFSET) >> 2;
663 }
664
665 static INLINE void r600_write_config_reg(struct radeon_winsys_cs *cs, unsigned reg, unsigned value)
666 {
667 r600_write_config_reg_seq(cs, reg, 1);
668 r600_write_value(cs, value);
669 }
670
671 static INLINE void r600_write_context_reg(struct radeon_winsys_cs *cs, unsigned reg, unsigned value)
672 {
673 r600_write_context_reg_seq(cs, reg, 1);
674 r600_write_value(cs, value);
675 }
676
677 static INLINE void r600_write_ctl_const(struct radeon_winsys_cs *cs, unsigned reg, unsigned value)
678 {
679 r600_write_ctl_const_seq(cs, reg, 1);
680 r600_write_value(cs, value);
681 }
682
683 /*
684 * common helpers
685 */
686 static INLINE uint32_t S_FIXED(float value, uint32_t frac_bits)
687 {
688 return value * (1 << frac_bits);
689 }
690 #define ALIGN_DIVUP(x, y) (((x) + (y) - 1) / (y))
691
692 static inline unsigned r600_tex_aniso_filter(unsigned filter)
693 {
694 if (filter <= 1) return 0;
695 if (filter <= 2) return 1;
696 if (filter <= 4) return 2;
697 if (filter <= 8) return 3;
698 /* else */ return 4;
699 }
700
701 /* 12.4 fixed-point */
702 static INLINE unsigned r600_pack_float_12p4(float x)
703 {
704 return x <= 0 ? 0 :
705 x >= 4096 ? 0xffff : x * 16;
706 }
707
708 #endif