ilo: Call GPE emit functions directly.
[mesa.git] / src / gallium / drivers / ilo / ilo_3d_pipeline.h
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 2013 LunarG, Inc.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the 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 NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Chia-I Wu <olv@lunarg.com>
26 */
27
28 #ifndef ILO_3D_PIPELINE_H
29 #define ILO_3D_PIPELINE_H
30
31 #include "ilo_common.h"
32 #include "ilo_context.h"
33 #include "ilo_gpe_gen6.h"
34 #include "ilo_gpe_gen7.h"
35
36 struct intel_bo;
37 struct ilo_cp;
38 struct ilo_context;
39
40 enum ilo_3d_pipeline_invalidate_flags {
41 ILO_3D_PIPELINE_INVALIDATE_HW = 1 << 0,
42 ILO_3D_PIPELINE_INVALIDATE_BATCH_BO = 1 << 1,
43 ILO_3D_PIPELINE_INVALIDATE_STATE_BO = 1 << 2,
44 ILO_3D_PIPELINE_INVALIDATE_KERNEL_BO = 1 << 3,
45
46 ILO_3D_PIPELINE_INVALIDATE_ALL = 0xffffffff,
47 };
48
49 enum ilo_3d_pipeline_action {
50 ILO_3D_PIPELINE_DRAW,
51 ILO_3D_PIPELINE_FLUSH,
52 ILO_3D_PIPELINE_WRITE_TIMESTAMP,
53 ILO_3D_PIPELINE_WRITE_DEPTH_COUNT,
54 };
55
56 /**
57 * 3D pipeline.
58 */
59 struct ilo_3d_pipeline {
60 struct ilo_cp *cp;
61 const struct ilo_dev_info *dev;
62
63 uint32_t invalidate_flags;
64
65 struct intel_bo *workaround_bo;
66
67 uint32_t packed_sample_position_1x;
68 uint32_t packed_sample_position_4x;
69 uint32_t packed_sample_position_8x[2];
70
71 int (*estimate_size)(struct ilo_3d_pipeline *pipeline,
72 enum ilo_3d_pipeline_action action,
73 const void *arg);
74
75 void (*emit_draw)(struct ilo_3d_pipeline *pipeline,
76 const struct ilo_context *ilo);
77
78 void (*emit_flush)(struct ilo_3d_pipeline *pipeline);
79
80 void (*emit_write_timestamp)(struct ilo_3d_pipeline *pipeline,
81 struct intel_bo *bo, int index);
82
83 void (*emit_write_depth_count)(struct ilo_3d_pipeline *pipeline,
84 struct intel_bo *bo, int index);
85
86 /**
87 * HW states.
88 */
89 struct ilo_3d_pipeline_state {
90 bool has_gen6_wa_pipe_control;
91
92 bool primitive_restart;
93 int reduced_prim;
94 int so_num_vertices, so_max_vertices;
95
96 uint32_t SF_VIEWPORT;
97 uint32_t CLIP_VIEWPORT;
98 uint32_t SF_CLIP_VIEWPORT; /* GEN7+ */
99 uint32_t CC_VIEWPORT;
100
101 uint32_t COLOR_CALC_STATE;
102 uint32_t BLEND_STATE;
103 uint32_t DEPTH_STENCIL_STATE;
104
105 uint32_t SCISSOR_RECT;
106
107 struct {
108 uint32_t BINDING_TABLE_STATE;
109 int BINDING_TABLE_STATE_size;
110 uint32_t SURFACE_STATE[ILO_MAX_VS_SURFACES];
111 uint32_t SAMPLER_STATE;
112 uint32_t SAMPLER_BORDER_COLOR_STATE[ILO_MAX_SAMPLERS];
113 uint32_t PUSH_CONSTANT_BUFFER;
114 int PUSH_CONSTANT_BUFFER_size;
115 } vs;
116
117 struct {
118 uint32_t BINDING_TABLE_STATE;
119 int BINDING_TABLE_STATE_size;
120 uint32_t SURFACE_STATE[ILO_MAX_GS_SURFACES];
121 bool active;
122 } gs;
123
124 struct {
125 uint32_t BINDING_TABLE_STATE;
126 int BINDING_TABLE_STATE_size;
127 uint32_t SURFACE_STATE[ILO_MAX_WM_SURFACES];
128 uint32_t SAMPLER_STATE;
129 uint32_t SAMPLER_BORDER_COLOR_STATE[ILO_MAX_SAMPLERS];
130 } wm;
131 } state;
132 };
133
134 struct ilo_3d_pipeline *
135 ilo_3d_pipeline_create(struct ilo_cp *cp, const struct ilo_dev_info *dev);
136
137 void
138 ilo_3d_pipeline_destroy(struct ilo_3d_pipeline *pipeline);
139
140
141 static inline void
142 ilo_3d_pipeline_invalidate(struct ilo_3d_pipeline *p, uint32_t flags)
143 {
144 p->invalidate_flags |= flags;
145 }
146
147 /**
148 * Estimate the size of an action.
149 */
150 static inline int
151 ilo_3d_pipeline_estimate_size(struct ilo_3d_pipeline *pipeline,
152 enum ilo_3d_pipeline_action action,
153 const void *arg)
154 {
155 return pipeline->estimate_size(pipeline, action, arg);
156 }
157
158 bool
159 ilo_3d_pipeline_emit_draw(struct ilo_3d_pipeline *p,
160 const struct ilo_context *ilo,
161 int *prim_generated, int *prim_emitted);
162
163 void
164 ilo_3d_pipeline_emit_flush(struct ilo_3d_pipeline *p);
165
166 void
167 ilo_3d_pipeline_emit_write_timestamp(struct ilo_3d_pipeline *p,
168 struct intel_bo *bo, int index);
169
170 void
171 ilo_3d_pipeline_emit_write_depth_count(struct ilo_3d_pipeline *p,
172 struct intel_bo *bo, int index);
173
174 void
175 ilo_3d_pipeline_get_sample_position(struct ilo_3d_pipeline *p,
176 unsigned sample_count,
177 unsigned sample_index,
178 float *x, float *y);
179
180 void
181 ilo_3d_pipeline_dump(struct ilo_3d_pipeline *p);
182
183 #endif /* ILO_3D_PIPELINE_H */