0a5673ba9174f9c690771ea57cfeb73d47ac9e5e
[mesa.git] / src / gallium / drivers / radeonsi / si_pm4.c
1 /*
2 * Copyright 2012 Advanced Micro Devices, Inc.
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 * Christian König <christian.koenig@amd.com>
25 */
26
27 #include "../radeon/r600_cs.h"
28 #include "util/u_memory.h"
29 #include "si_pipe.h"
30 #include "sid.h"
31
32 #define NUMBER_OF_STATES (sizeof(union si_state) / sizeof(struct si_pm4_state *))
33
34 void si_pm4_cmd_begin(struct si_pm4_state *state, unsigned opcode)
35 {
36 state->last_opcode = opcode;
37 state->last_pm4 = state->ndw++;
38 }
39
40 void si_pm4_cmd_add(struct si_pm4_state *state, uint32_t dw)
41 {
42 state->pm4[state->ndw++] = dw;
43 }
44
45 void si_pm4_cmd_end(struct si_pm4_state *state, bool predicate)
46 {
47 unsigned count;
48 count = state->ndw - state->last_pm4 - 2;
49 state->pm4[state->last_pm4] =
50 PKT3(state->last_opcode, count, predicate)
51 | PKT3_SHADER_TYPE_S(state->compute_pkt);
52
53 assert(state->ndw <= SI_PM4_MAX_DW);
54 }
55
56 void si_pm4_set_reg(struct si_pm4_state *state, unsigned reg, uint32_t val)
57 {
58 unsigned opcode;
59
60 if (reg >= SI_CONFIG_REG_OFFSET && reg < SI_CONFIG_REG_END) {
61 opcode = PKT3_SET_CONFIG_REG;
62 reg -= SI_CONFIG_REG_OFFSET;
63
64 } else if (reg >= SI_SH_REG_OFFSET && reg < SI_SH_REG_END) {
65 opcode = PKT3_SET_SH_REG;
66 reg -= SI_SH_REG_OFFSET;
67
68 } else if (reg >= SI_CONTEXT_REG_OFFSET && reg < SI_CONTEXT_REG_END) {
69 opcode = PKT3_SET_CONTEXT_REG;
70 reg -= SI_CONTEXT_REG_OFFSET;
71
72 } else if (reg >= CIK_UCONFIG_REG_OFFSET && reg < CIK_UCONFIG_REG_END) {
73 opcode = PKT3_SET_UCONFIG_REG;
74 reg -= CIK_UCONFIG_REG_OFFSET;
75
76 } else {
77 R600_ERR("Invalid register offset %08x!\n", reg);
78 return;
79 }
80
81 reg >>= 2;
82
83 if (opcode != state->last_opcode || reg != (state->last_reg + 1)) {
84 si_pm4_cmd_begin(state, opcode);
85 si_pm4_cmd_add(state, reg);
86 }
87
88 state->last_reg = reg;
89 si_pm4_cmd_add(state, val);
90 si_pm4_cmd_end(state, false);
91 }
92
93 void si_pm4_add_bo(struct si_pm4_state *state,
94 struct r600_resource *bo,
95 enum radeon_bo_usage usage)
96 {
97 unsigned idx = state->nbo++;
98 assert(idx < SI_PM4_MAX_BO);
99
100 r600_resource_reference(&state->bo[idx], bo);
101 state->bo_usage[idx] = usage;
102 }
103
104 void si_pm4_sh_data_begin(struct si_pm4_state *state)
105 {
106 si_pm4_cmd_begin(state, PKT3_NOP);
107 }
108
109 void si_pm4_sh_data_add(struct si_pm4_state *state, uint32_t dw)
110 {
111 si_pm4_cmd_add(state, dw);
112 }
113
114 void si_pm4_sh_data_end(struct si_pm4_state *state, unsigned base, unsigned idx)
115 {
116 unsigned offs = state->last_pm4 + 1;
117 unsigned reg = base + idx * 4;
118
119 /* Bail if no data was added */
120 if (state->ndw == offs) {
121 state->ndw--;
122 return;
123 }
124
125 si_pm4_cmd_end(state, false);
126
127 si_pm4_cmd_begin(state, PKT3_SET_SH_REG_OFFSET);
128 si_pm4_cmd_add(state, (reg - SI_SH_REG_OFFSET) >> 2);
129 state->relocs[state->nrelocs++] = state->ndw;
130 si_pm4_cmd_add(state, offs << 2);
131 si_pm4_cmd_add(state, 0);
132 si_pm4_cmd_end(state, false);
133 }
134
135 void si_pm4_inval_shader_cache(struct si_pm4_state *state)
136 {
137 state->cp_coher_cntl |= S_0085F0_SH_ICACHE_ACTION_ENA(1);
138 state->cp_coher_cntl |= S_0085F0_SH_KCACHE_ACTION_ENA(1);
139 }
140
141 void si_pm4_inval_texture_cache(struct si_pm4_state *state)
142 {
143 state->cp_coher_cntl |= S_0085F0_TC_ACTION_ENA(1);
144 state->cp_coher_cntl |= S_0085F0_TCL1_ACTION_ENA(1);
145 }
146
147 void si_pm4_free_state(struct si_context *sctx,
148 struct si_pm4_state *state,
149 unsigned idx)
150 {
151 if (state == NULL)
152 return;
153
154 if (idx != ~0 && sctx->emitted.array[idx] == state) {
155 sctx->emitted.array[idx] = NULL;
156 }
157
158 for (int i = 0; i < state->nbo; ++i) {
159 r600_resource_reference(&state->bo[i], NULL);
160 }
161 FREE(state);
162 }
163
164 struct si_pm4_state * si_pm4_alloc_state(struct si_context *sctx)
165 {
166 struct si_pm4_state *pm4 = CALLOC_STRUCT(si_pm4_state);
167
168 if (pm4 == NULL)
169 return NULL;
170
171 pm4->chip_class = sctx->b.chip_class;
172
173 return pm4;
174 }
175
176 uint32_t si_pm4_sync_flags(struct si_context *sctx)
177 {
178 uint32_t cp_coher_cntl = 0;
179
180 for (int i = 0; i < NUMBER_OF_STATES; ++i) {
181 struct si_pm4_state *state = sctx->queued.array[i];
182
183 if (!state || sctx->emitted.array[i] == state)
184 continue;
185
186 cp_coher_cntl |= state->cp_coher_cntl;
187 }
188 return cp_coher_cntl;
189 }
190
191 unsigned si_pm4_dirty_dw(struct si_context *sctx)
192 {
193 unsigned count = 0;
194
195 for (int i = 0; i < NUMBER_OF_STATES; ++i) {
196 struct si_pm4_state *state = sctx->queued.array[i];
197
198 if (!state || sctx->emitted.array[i] == state)
199 continue;
200
201 count += state->ndw;
202 #if SI_TRACE_CS
203 /* for tracing each states */
204 if (sctx->screen->b.trace_bo) {
205 count += SI_TRACE_CS_DWORDS;
206 }
207 #endif
208 }
209
210 return count;
211 }
212
213 void si_pm4_emit(struct si_context *sctx, struct si_pm4_state *state)
214 {
215 struct radeon_winsys_cs *cs = sctx->b.rings.gfx.cs;
216 for (int i = 0; i < state->nbo; ++i) {
217 r600_context_bo_reloc(&sctx->b, &sctx->b.rings.gfx, state->bo[i],
218 state->bo_usage[i]);
219 }
220
221 memcpy(&cs->buf[cs->cdw], state->pm4, state->ndw * 4);
222
223 for (int i = 0; i < state->nrelocs; ++i) {
224 cs->buf[cs->cdw + state->relocs[i]] += cs->cdw << 2;
225 }
226
227 cs->cdw += state->ndw;
228
229 #if SI_TRACE_CS
230 if (sctx->screen->b.trace_bo) {
231 si_trace_emit(sctx);
232 }
233 #endif
234 }
235
236 void si_pm4_emit_dirty(struct si_context *sctx)
237 {
238 for (int i = 0; i < NUMBER_OF_STATES; ++i) {
239 struct si_pm4_state *state = sctx->queued.array[i];
240
241 if (!state || sctx->emitted.array[i] == state)
242 continue;
243
244 assert(state != sctx->queued.named.init);
245 si_pm4_emit(sctx, state);
246 sctx->emitted.array[i] = state;
247 }
248 }
249
250 void si_pm4_reset_emitted(struct si_context *sctx)
251 {
252 memset(&sctx->emitted, 0, sizeof(sctx->emitted));
253 }
254
255 void si_pm4_cleanup(struct si_context *sctx)
256 {
257 for (int i = 0; i < NUMBER_OF_STATES; ++i) {
258 si_pm4_free_state(sctx, sctx->queued.array[i], i);
259 }
260 }