7d5aa15fc56ba293d3d3638fd0b75ad56e6a565b
[mesa.git] / src / gallium / drivers / panfrost / pan_cmdstream.h
1 /*
2 * Copyright (C) 2018 Alyssa Rosenzweig
3 * Copyright (C) 2020 Collabora Ltd.
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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * 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 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 FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25 #ifndef __PAN_CMDSTREAM_H__
26 #define __PAN_CMDSTREAM_H__
27
28 #include "pipe/p_defines.h"
29 #include "pipe/p_state.h"
30
31 #include "panfrost-job.h"
32
33 #include "pan_job.h"
34
35 void panfrost_sampler_desc_init(const struct pipe_sampler_state *cso,
36 struct mali_sampler_descriptor *hw);
37
38 void
39 panfrost_vt_init(struct panfrost_context *ctx,
40 enum pipe_shader_type stage,
41 struct midgard_payload_vertex_tiler *vtp);
42
43 void
44 panfrost_vt_set_draw_info(struct panfrost_context *ctx,
45 const struct pipe_draw_info *info,
46 enum mali_draw_mode draw_mode,
47 struct midgard_payload_vertex_tiler *vp,
48 struct midgard_payload_vertex_tiler *tp,
49 unsigned *vertex_count,
50 unsigned *padded_count);
51
52 void
53 panfrost_emit_shader_meta(struct panfrost_batch *batch,
54 enum pipe_shader_type st,
55 struct midgard_payload_vertex_tiler *vtp);
56
57 void
58 panfrost_emit_viewport(struct panfrost_batch *batch,
59 struct midgard_payload_vertex_tiler *tp);
60
61 void
62 panfrost_emit_const_buf(struct panfrost_batch *batch,
63 enum pipe_shader_type stage,
64 struct midgard_payload_vertex_tiler *vtp);
65
66 void
67 panfrost_emit_shared_memory(struct panfrost_batch *batch,
68 const struct pipe_grid_info *info,
69 struct midgard_payload_vertex_tiler *vtp);
70
71 void
72 panfrost_emit_texture_descriptors(struct panfrost_batch *batch,
73 enum pipe_shader_type stage,
74 struct midgard_payload_vertex_tiler *vtp);
75
76 void
77 panfrost_emit_sampler_descriptors(struct panfrost_batch *batch,
78 enum pipe_shader_type stage,
79 struct midgard_payload_vertex_tiler *vtp);
80
81 void
82 panfrost_emit_vertex_attr_meta(struct panfrost_batch *batch,
83 struct midgard_payload_vertex_tiler *vp);
84
85 void
86 panfrost_emit_vertex_data(struct panfrost_batch *batch,
87 struct midgard_payload_vertex_tiler *vp);
88
89 void
90 panfrost_emit_varying_descriptor(struct panfrost_batch *batch,
91 unsigned vertex_count,
92 struct midgard_payload_vertex_tiler *vp,
93 struct midgard_payload_vertex_tiler *tp);
94
95 void
96 panfrost_emit_vertex_tiler_jobs(struct panfrost_batch *batch,
97 struct midgard_payload_vertex_tiler *vp,
98 struct midgard_payload_vertex_tiler *tp);
99
100 #endif /* __PAN_CMDSTREAM_H__ */