summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/r600/drm/radeon_state.c
blob: d4e622cf7fd3f19fefb68049e0e8d48ce0d3f13b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/*
 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * on the rights to use, copy, modify, merge, publish, distribute, sub
 * license, and/or sell copies of the Software, and to permit persons to whom
 * the Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors:
 *      Jerome Glisse
 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "radeon_priv.h"

/*
 * state core functions
 */
struct radeon_state *radeon_state_shader(struct radeon *radeon, u32 stype, u32 id, u32 shader_type)
{
	struct radeon_state *state;
	struct radeon_stype_info *found = NULL;
	int i, j, shader_index = -1;

	/* traverse the stype array */
	for (i = 0; i < radeon->nstype; i++) {
		/* if the type doesn't match, if the shader doesn't match */
		if (stype != radeon->stype[i].stype)
			continue;
		if (shader_type) {
			for (j = 0; j < 4; j++) {
				if (radeon->stype[i].reginfo[j].shader_type == shader_type) {
					shader_index = j;
					break;
				}
			}
			if (shader_index == -1)
				continue;
		} else {
			if (radeon->stype[i].reginfo[0].shader_type)
				continue;
			else
				shader_index = 0;
		}
		if (id > radeon->stype[i].num)
			continue;
		
		found = &radeon->stype[i];
		break;
	}

	if (!found) {
		fprintf(stderr, "%s invalid type %d/id %d/shader class %d\n", __func__, stype, id, shader_type);
		return NULL;
	}

	state = calloc(1, sizeof(*state));
	if (state == NULL)
		return NULL;
	state->stype = found;
	state->radeon = radeon;
	state->id = id;
	state->shader_index = shader_index;
	state->refcount = 1;
	state->npm4 = found->npm4;
	state->nstates = found->reginfo[shader_index].nstates;
	return state;
}

int radeon_state_convert(struct radeon_state *state, u32 stype, u32 id, u32 shader_type)
{
	struct radeon_stype_info *found = NULL;
	int i, j, shader_index = -1;

	if (state == NULL)
		return 0;
	/* traverse the stype array */
	for (i = 0; i < state->radeon->nstype; i++) {
		/* if the type doesn't match, if the shader doesn't match */
		if (stype != state->radeon->stype[i].stype)
			continue;
		if (shader_type) {
			for (j = 0; j < 4; j++) {
				if (state->radeon->stype[i].reginfo[j].shader_type == shader_type) {
					shader_index = j;
					break;
				}
			}
			if (shader_index == -1)
				continue;
		} else {
			if (state->radeon->stype[i].reginfo[0].shader_type)
				continue;
			else
				shader_index = 0;
		}
		if (id > state->radeon->stype[i].num)
			continue;
		
		found = &state->radeon->stype[i];
		break;
	}

	if (!found) {
		fprintf(stderr, "%s invalid type %d/id %d/shader class %d\n", __func__, stype, id, shader_type);
		return -EINVAL;
	}

	if (found->reginfo[shader_index].nstates != state->nstates) {
		fprintf(stderr, "invalid type change from (%d %d %d) to (%d %d %d)\n",
			state->stype->stype, state->id, state->shader_index, stype, id, shader_index);
	}

	state->stype = found;
	state->id = id;
	state->shader_index = shader_index;
	return radeon_state_pm4(state);
}

struct radeon_state *radeon_state(struct radeon *radeon, u32 type, u32 id)
{
	return radeon_state_shader(radeon, type, id, 0);
}

struct radeon_state *radeon_state_duplicate(struct radeon_state *state)
{
	struct radeon_state *nstate = radeon_state_shader(state->radeon, state->stype->stype, state->id, (1 << state->shader_index));
	unsigned i;

	if (state == NULL)
		return NULL;
	nstate->cpm4 = state->cpm4;
	nstate->nbo = state->nbo;
	nstate->nreloc = state->nreloc;
	memcpy(nstate->states, state->states, state->nstates * 4);
	memcpy(nstate->pm4, state->pm4, state->npm4 * 4);
	memcpy(nstate->placement, state->placement, 8 * 4);
	memcpy(nstate->reloc_pm4_id, state->reloc_pm4_id, 8 * 4);
	memcpy(nstate->reloc_bo_id, state->reloc_bo_id, 8 * 4);
	memcpy(nstate->bo_dirty, state->bo_dirty, 4 * 4);
	for (i = 0; i < state->nbo; i++) {
		nstate->bo[i] = radeon_bo_incref(state->radeon, state->bo[i]);
	}
	return nstate;
}

struct radeon_state *radeon_state_incref(struct radeon_state *state)
{
	state->refcount++;
	return state;
}

struct radeon_state *radeon_state_decref(struct radeon_state *state)
{
	unsigned i;

	if (state == NULL)
		return NULL;
	if (--state->refcount > 0) {
		return NULL;
	}
	for (i = 0; i < state->nbo; i++) {
		state->bo[i] = radeon_bo_decref(state->radeon, state->bo[i]);
	}
	memset(state, 0, sizeof(*state));
	free(state);
	return NULL;
}

int radeon_state_replace_always(struct radeon_state *ostate,
				struct radeon_state *nstate)
{
	return 1;
}

int radeon_state_pm4_generic(struct radeon_state *state)
{
	return -EINVAL;
}

static u32 crc32(void *d, size_t len)
{
	u16 *data = (uint16_t*)d;
	u32 sum1 = 0xffff, sum2 = 0xffff;

	len = len >> 1;
	while (len) {
		unsigned tlen = len > 360 ? 360 : len;
		len -= tlen;
		do {
			sum1 += *data++;
			sum2 += sum1;
		} while (--tlen);
		sum1 = (sum1 & 0xffff) + (sum1 >> 16);
		sum2 = (sum2 & 0xffff) + (sum2 >> 16);
	}
	/* Second reduction step to reduce sums to 16 bits */
	sum1 = (sum1 & 0xffff) + (sum1 >> 16);
	sum2 = (sum2 & 0xffff) + (sum2 >> 16);
	return sum2 << 16 | sum1;
}

int radeon_state_pm4(struct radeon_state *state)
{
	int r;

	if (state == NULL)
		return 0;
	state->cpm4 = 0;
	r = state->stype->pm4(state);
	if (r) {
		fprintf(stderr, "%s failed to build PM4 for state(%d %d)\n",
			__func__, state->stype->stype, state->id);
		return r;
	}
	state->pm4_crc = crc32(state->pm4, state->cpm4 * 4);
	return 0;
}

int radeon_state_reloc(struct radeon_state *state, unsigned id, unsigned bo_id)
{
	state->reloc_pm4_id[state->nreloc] = id;
	state->reloc_bo_id[state->nreloc] = bo_id;
	state->nreloc++;
	return 0;
}