Merge remote branch 'origin/master' into glsl2
[mesa.git] / src / gallium / drivers / r600 / r600_asm.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 #ifndef R600_ASM_H
24 #define R600_ASM_H
25
26 #include "radeon.h"
27 #include "util/u_double_list.h"
28
29 struct r600_bc_alu_src {
30 unsigned sel;
31 unsigned chan;
32 unsigned neg;
33 unsigned abs;
34 };
35
36 struct r600_bc_alu_dst {
37 unsigned sel;
38 unsigned chan;
39 unsigned clamp;
40 unsigned write;
41 };
42
43 struct r600_bc_alu {
44 struct list_head list;
45 struct r600_bc_alu_src src[3];
46 struct r600_bc_alu_dst dst;
47 unsigned inst;
48 unsigned last;
49 unsigned is_op3;
50 unsigned nliteral;
51 u32 value[4];
52 };
53
54 struct r600_bc_tex {
55 struct list_head list;
56 unsigned inst;
57 unsigned resource_id;
58 unsigned src_gpr;
59 unsigned src_rel;
60 unsigned dst_gpr;
61 unsigned dst_rel;
62 unsigned dst_sel_x;
63 unsigned dst_sel_y;
64 unsigned dst_sel_z;
65 unsigned dst_sel_w;
66 unsigned lod_bias;
67 unsigned coord_type_x;
68 unsigned coord_type_y;
69 unsigned coord_type_z;
70 unsigned coord_type_w;
71 unsigned offset_x;
72 unsigned offset_y;
73 unsigned offset_z;
74 unsigned sampler_id;
75 unsigned src_sel_x;
76 unsigned src_sel_y;
77 unsigned src_sel_z;
78 unsigned src_sel_w;
79 };
80
81 struct r600_bc_vtx {
82 struct list_head list;
83 unsigned inst;
84 unsigned fetch_type;
85 unsigned buffer_id;
86 unsigned src_gpr;
87 unsigned src_sel_x;
88 unsigned mega_fetch_count;
89 unsigned dst_gpr;
90 unsigned dst_sel_x;
91 unsigned dst_sel_y;
92 unsigned dst_sel_z;
93 unsigned dst_sel_w;
94 };
95
96 struct r600_bc_output {
97 unsigned array_base;
98 unsigned type;
99 unsigned end_of_program;
100 unsigned inst;
101 unsigned elem_size;
102 unsigned gpr;
103 unsigned swizzle_x;
104 unsigned swizzle_y;
105 unsigned swizzle_z;
106 unsigned swizzle_w;
107 unsigned barrier;
108 };
109
110 struct r600_bc_cf {
111 struct list_head list;
112 unsigned inst;
113 unsigned addr;
114 unsigned ndw;
115 unsigned id;
116 struct list_head alu;
117 struct list_head tex;
118 struct list_head vtx;
119 struct r600_bc_output output;
120 };
121
122 struct r600_bc {
123 enum radeon_family family;
124 struct list_head cf;
125 struct r600_bc_cf *cf_last;
126 unsigned ndw;
127 unsigned ncf;
128 unsigned ngpr;
129 unsigned nresource;
130 u32 *bytecode;
131 };
132
133 int r600_bc_init(struct r600_bc *bc, enum radeon_family family);
134 int r600_bc_add_alu(struct r600_bc *bc, const struct r600_bc_alu *alu);
135 int r600_bc_add_literal(struct r600_bc *bc, const u32 *value);
136 int r600_bc_add_vtx(struct r600_bc *bc, const struct r600_bc_vtx *vtx);
137 int r600_bc_add_tex(struct r600_bc *bc, const struct r600_bc_tex *tex);
138 int r600_bc_add_output(struct r600_bc *bc, const struct r600_bc_output *output);
139 int r600_bc_build(struct r600_bc *bc);
140
141 #endif