radeonsi: don't restore states at the beginning of IBs if they're shadowed
[mesa.git] / src / gallium / drivers / radeonsi / si_pm4.h
1 /*
2 * Copyright 2012 Advanced Micro Devices, Inc.
3 * All Rights Reserved.
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the 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 NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 #ifndef SI_PM4_H
26 #define SI_PM4_H
27
28 #include "radeon/radeon_winsys.h"
29
30 #define SI_PM4_MAX_DW 176
31
32 // forward defines
33 struct si_context;
34
35 /* State atoms are callbacks which write a sequence of packets into a GPU
36 * command buffer (AKA indirect buffer, AKA IB, AKA command stream, AKA CS).
37 */
38 struct si_atom {
39 void (*emit)(struct si_context *ctx);
40 };
41
42 struct si_pm4_state {
43 /* PKT3_SET_*_REG handling */
44 unsigned last_opcode;
45 unsigned last_reg;
46 unsigned last_pm4;
47
48 /* commands for the DE */
49 unsigned ndw;
50 uint32_t pm4[SI_PM4_MAX_DW];
51
52 /* For shader states only */
53 struct si_shader *shader;
54 struct si_atom atom;
55 };
56
57 void si_pm4_cmd_add(struct si_pm4_state *state, uint32_t dw);
58 void si_pm4_set_reg(struct si_pm4_state *state, unsigned reg, uint32_t val);
59
60 void si_pm4_clear_state(struct si_pm4_state *state);
61 void si_pm4_free_state(struct si_context *sctx, struct si_pm4_state *state, unsigned idx);
62
63 void si_pm4_emit(struct si_context *sctx, struct si_pm4_state *state);
64 void si_pm4_reset_emitted(struct si_context *sctx, bool first_cs);
65
66 #endif